gpt4 book ai didi

scala - 单例类型中的表面不一致

转载 作者:行者123 更新时间:2023-12-04 15:01:52 25 4
gpt4 key购买 nike

我有几个关于单例类型的问题,但由于它们都非常密切相关,我将它们发布在同一线程下。

一季度。为什么#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

最佳答案

单例类型只能引用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

关于scala - 单例类型中的表面不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12025298/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com