gpt4 book ai didi

java - BukkitRunnable 中的 'this'

转载 作者:行者123 更新时间:2023-11-29 04:20:21 25 4
gpt4 key购买 nike

this 关键字在 org.bukkit.scheduler.BukkitRunnable 中指的是什么?

public class Foo {
protected Player player;

public Foo(Player player) {
this.player = player;
BukkitRunnable runnable = new BukkitRunnable() {
@Override
public void run() {
// does 'this' still refer to the instance of 'Foo' ?
this.player.sendMessage("Hello");
}
};
}
}

上面的 runnable 会向用于实例化 Foo 的播放器发送消息吗?

最佳答案

BukkitRunnable 中的

this 指的是您创建的 BukkitRunnable 实例。
在这种情况下,只需引用 player 就足够了。否则,使用 OuterClass.this 从内部类引用 currnet 实例。在这种情况下,您将使用 Foo.this.player 来获取播放器。

关于java - BukkitRunnable 中的 'this',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49701928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com