在运行时,我可以:
def X(R: Any): Any = X(R)
但是不能在编译时做类似的事情:
scala> type X[R] = X[R]
<console>:11: error: illegal cyclic reference involving type X
type X[R] = X[R]
^
似乎是无限循环/递归保护,但据我了解 Halting 问题 - 没有通用的方法可以检测图灵完备语言的无限递归(因为检测器本身可能不会停止),因此额外的编译器检查通常不会在这里工作。
那么有没有办法在scalac上获得无限递归呢?而且,还有其他(除了防止这种递归)理由illegal cyclic reference
吗?
有一种棘手的方法可以使用递归与多态性相结合在scalac上获取StackOverflow:
scala> trait Re { type X[R <: Re] }
warning: there were 1 feature warning(s); re-run with -feature for details
defined trait Re
scala> trait ReRe extends Re {type X[R <: Re] = R#X[R]}
defined trait ReRe
scala> type X = ReRe#X[ReRe]
java.lang.StackOverflowError
它之所以有效,是因为编译器认为R#X[R]
是在Re
上调用的,但实际上ReRe
是在计算type X
时传递的。
不知道illegal cyclic reference
的目的 - 也许它只保护编译器内部的无限循环,而不是无限递归(如果使用非尾递归实现图灵完备性)。