如何在runnable中停止runnable?

时间:2017-04-17 21:00:06

标签: java runnable

我试图创建一个可以测试你是否已经死亡(健康状况低于1)并且如果你已经死亡的可运行状态,那么它将停止运行。如果你还没有坚持下去。但我无法找到阻止可运行的方法。有没有办法用脚本停止runnable中的runnable?

请注意,runnable正在通过一个线程运行:

session.write(b"on0xxx\n")

可运行的示例:

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

2 个答案:

答案 0 :(得分:1)

如果健康<

你可以打破循环1:

if (health < 1) {
    break;
}

或者您可以更改while条件:

while (health > 1) {

}

答案 1 :(得分:0)

while (true) {
    if (health < 1) {
        // How do i stop the runnable?
        return;
    }
}