如何在runnable中停止runnable?

How to stop a runnable within the runnable?

我正在尝试创建一个 运行nable 来测试你是否已经死亡(生命值低于 1),如果你已经死亡,那么它将停止 运行nable .如果你不是,它会继续下去。但是我找不到停止 运行nable 的方法。有没有办法用脚本在 运行nable 中停止 运行nable?

请注意 运行nable 正在 运行 通过线程:

Thread thread1 = new Thread(runnableName);
thread1.start();

可运行示例:

Runnable r1 = new Runnable() {
    public void run() {
        while (true) {
            if (health < 1) {
                // How do i stop the runnable?
            }
        }
    }
}
while (true) {
    if (health < 1) {
        // How do i stop the runnable?
        return;
    }
}

如果健康 < 1,您可以打破循环:

if (health < 1) {
    break;
}

或者您可以更改 while 条件:

while (health > 1) {

}