单例类型中的表面不一致

时间:2012-08-19 08:42:47

标签: scala types programming-languages type-systems singleton-type

我有一些关于单身人士类型的问题,但由于他们都非常密切相关,我将他们发布在同一个帖子下。

Q1。为什么#1不能编译但是#2呢?

def id(x: Any): x.type = x      // #1
def id(x: AnyRef): x.type = x   // #2

Q2。在String的情况下正确推断出类型,但在我尝试过的其他引用类型的情况下则没有。为什么会这样?

scala> id("hello")
res3: String = hello

scala> id(BigInt(9))
res4: AnyRef = 9

scala> class Foo
defined class Foo

scala> id(new Foo)
res5: AnyRef = Foo@7c5c5601

2 个答案:

答案 0 :(得分:7)

单例类型只能引用AnyRef后代。有关详细信息,请参阅Why do String literals conform to Scala Singleton

应用程序id(BigInt(9))的参数不能通过稳定路径引用,因此没有一个有趣的单例类型。

scala> id(new {})
res4: AnyRef = $anon$1@7440d1b0

scala> var o = new {}; id(o)
o: Object = $anon$1@68207d99
res5: AnyRef = $anon$1@68207d99

scala> def o = new {}; id(o)
o: Object
res6: AnyRef = $anon$1@2d76343e

scala> val o = new {}; id(o) // Third time's the charm!
o: Object = $anon$1@3806846c
res7: o.type = $anon$1@3806846c

答案 1 :(得分:-1)

我也在#2上遇到错误(使用Scala 2.9.1.final):

error: illegal dependent method type
  def id(x: AnyRef): x.type = x;          ^
one error found

我认为正确的解决方案是使用类型参数使用make id多态:

def id[T <: Any](x: T): T = x;