理解 scala 中的 actor 的问题
我一直在尝试理解 scala 中的 actor,但我仍然不明白...
以下代码:
def main(args: Array[String]){
while(true){
println("inside main")
MyActor ! "go"
}
}
object MyActor extends Actor{
def act(){
loop{
react{
case _ => println("inside actor")
}
}
}
}
它正在打印 inside main
,但不是 inside actor
。 .. 为什么?此外,接收和反应有什么区别?
I've been trying to understand actors in scala but I'm still not getting it...
The following code:
def main(args: Array[String]){
while(true){
println("inside main")
MyActor ! "go"
}
}
object MyActor extends Actor{
def act(){
loop{
react{
case _ => println("inside actor")
}
}
}
}
It is printing inside main
, but not inside actor
... Why? Moreover, what's the difference between receive and react??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
演员需要开始。只需在 main 方法的顶部添加
MyActor.start
即可。如果你在 while 循环中添加延迟,事情会变得不那么混乱。Actors need to be started. Just add
MyActor.start
at the top of your main method and it will work. It will be less messy if you add a delay inside your while loop.