This question already has answers here:
What are some example use cases for symbol literals in Scala?
(4个答案)
7个月前关闭。
在ScalaActors.pdf上的幻灯片中,单引号表示何时将消息发送给乒乓球 Actor ?
(4个答案)
7个月前关闭。
在ScalaActors.pdf上的幻灯片中,单引号表示何时将消息发送给乒乓球 Actor ?
class Ping(count: int, pong: Pong) extends Actor {
def act() {
pong ! 'Ping // what does the single quote indicate???
receive {
case 'Pong =>
}
}
}
最佳答案
它表示一个符号。例如。 cfr http://www.scala-lang.org/docu/files/api/scala/Symbol.html:
08-04 03:48