如何使用" creative"访问对象斯卡拉的名字?

时间:2016-11-10 11:53:44

标签: scala

例如,给定

object ~ {
   def foo = ???
}

我如何访问该方法?

这些都不起作用:

~.foo  

`~`.foo

两个编译器都抱怨"非法启动简单表达"。

是的,我知道我可能不应该为课程命名"〜"但是标准库和其他一些库都有,有时你需要使用它们。

已添加:查看sschaef's answer我试过

 $tilde.foo

这确实有效。不确定是否有意或只是这些名称如何转换为JVM标识符的实现细节。这是否适用于其他类型的scala(例如Scala.js)?

我会稍微敞开心扉,看看是否有人会更广泛的回答。

1 个答案:

答案 0 :(得分:5)

问题似乎只存在于2.11:

Welcome to Scala 2.11.8 (OpenJDK 64-Bit Server VM, Java 1.8.0_102).
Type in expressions for evaluation. Or try :help.
scala> object ~ { def foo = 0 }
defined object $tilde

scala> ~.foo
<console>:1: error: illegal start of simple expression
~.foo
 ^

在2.12中它运作良好:

Welcome to Scala 2.12.0 (OpenJDK 64-Bit Server VM, Java 1.8.0_102).
Type in expressions for evaluation. Or try :help.
> object ~ { def foo = 0 }
defined object $tilde
> ~.foo
res0: Int = 0