停止(getSelf())与停止(this.getSelf())

stop(getSelf()) vs stop(this.getSelf())

一直在研究Akka Actors。我知道杀死 运行 演员的 stop(ActorRef) 的含义。但是杀死演员时 getSelf() 和 this.getSelf() 有什么区别?提前谢谢你!

它们之间没有区别,只是有些人认为它增强了可读性。

可读性 在编程中很重要,但在这种特定情况下,我个人认为无论是否带有 this 前缀,它们的可读性都一样。