Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
a=>以下代码中的含义是什么?它是指向this实例化对象的指针吗?
a=>
this
class A { a=> def methodB()={ ..... } }
它被称为自引用或自类型。在您的情况下,它的意思是“创建名称为 'a' 的符号并将其指向 this 引用”。
有关更多信息,请参阅“自我引用”(第 17 章)部分中的SO Scala 教程:
自我参考 统一类型 自引用命名 多个自我参考 自引用和子类型之间的区别