理解 scala 中的 actor 的问题

发布于 2024-11-08 21:37:34 字数 407 浏览 0 评论 0原文

我一直在尝试理解 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尐籹人 2024-11-15 21:37:34

演员需要开始。只需在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文