java - AKKA actor創(chuàng)建錯(cuò)誤
問題描述
class Master(val host: String, val port: Int) extends Actor 第一種寫法val masterActor=new Master(host, port)val master = actorSystem.actorOf(Props(masterActor), 'Master')
Exception in thread 'main' akka.actor.ActorInitializationException: You cannot create an instance of [test.rpc.Master] explicitly using the constructor (new). You have to use one of the ’actorOf’ factory methods to create a new actor. See the documentation.
at akka.actor.ActorInitializationException$.apply(Actor.scala:167)at akka.actor.Actor$class.$init$(Actor.scala:423)at test.rpc.Master.<init>(Master.scala:13)at test.rpc.Master$.main(Master.scala:106)at test.rpc.Master.main(Master.scala)at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)at java.lang.reflect.Method.invoke(Method.java:606)at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
You cannot create an instance of [test.rpc.Master] explicitly using the constructor (new). You have to use one of the ’actorOf’ factory methods to create a new actor.
錯(cuò)誤的代碼是:val masterActor=new Master(host, port) 這行代碼在執(zhí)行的時(shí)候出錯(cuò)了,拋出了異常
第二中寫法這種寫法就沒有錯(cuò)誤:val master = actorSystem.actorOf(Props(new Master(host, port)), 'Master')
第二種寫法中也會(huì)是首先執(zhí)行new Master(host,port),為什么第二種寫法中就沒有拋出異常呢???
以上兩種寫法都是會(huì)首先執(zhí)行new Master的。
已知:actor的創(chuàng)建需要有繼承體系,實(shí)例是不能直接使用new 來創(chuàng)建的。而是使用系統(tǒng)的actorOf方法來創(chuàng)建,注意Actor之間有層次關(guān)系(和人類社會(huì)一樣)。
問題: 第二中寫法也是直接new了actor 就沒報(bào)錯(cuò),原因是什么那
main方法主要代碼:
def main(args: Array[String]): Unit = { val host = args(0) val port = args(1).toInt println(host) println(port) val config = ...... val actorSystem = ActorSystem('MasterSystem', config)//第一中方式,自己new,結(jié)果就是運(yùn)行不起來,直接報(bào)錯(cuò) val masterActor= new Master(host, port) val master = actorSystem.actorOf(Props(masterActor), 'Master') //第二種方式, 這行代碼中也有new Master,但是程序可以正常運(yùn)行,不會(huì)出錯(cuò)val master = actorSystem.actorOf(Props(new Master(host, port)), 'Master') actorSystem.awaitTermination() }
問題解答
回答1:第二種哪里是直接new了,不是actorSystem的工廠方法創(chuàng)建的么?把你的main方法所有代碼貼出來
相關(guān)文章:
1. boot2docker無法啟動(dòng)2. docker-compose中volumes的問題3. 關(guān)docker hub上有些鏡像的tag被標(biāo)記““This image has vulnerabilities””4. nignx - docker內(nèi)nginx 80端口被占用5. docker安裝后出現(xiàn)Cannot connect to the Docker daemon.6. javascript - mock.js可以存儲數(shù)據(jù)嗎7. java - SSH框架中寫分頁時(shí)service層中不能注入分頁類8. golang - 用IDE看docker源碼時(shí)的小問題9. docker api 開發(fā)的端口怎么獲取?10. dockerfile - 為什么docker容器啟動(dòng)不了?

網(wǎng)公網(wǎng)安備