// allows passing in arguments to the MyActor constructor
ActorRef myActor = system.actorOf(new Props(new UntypedActorFactory()
{ //
public UntypedActor create() { //
return new MyActor("..."); // <- this part confuses me
} //
} //
), "myactor");
我是 Java 新手,正在阅读 Akka 文档。我发现上面的代码令人困惑。尤其是下面的代码块。如何将代码块发送到“new UntypedActorFactory()”构造函数调用。这种类型的构造函数初始化称为什么。
{
public UntypedActor create() {
return new MyActor("...");
}