gpt4 book ai didi

java - 如何在java中每1秒检查一些条件直到为真

转载 作者:行者123 更新时间:2023-12-01 06:32:01 26 4
gpt4 key购买 nike

我需要每1秒检查一次java中的某些条件,直到它为真。一旦为真,需要退出并继续。

说a->b->c每 1 秒检查一次 b,直到为 true,如果为 true,则转到 c。

有人可以建议用 Java 实现这一目标的最佳方法是什么吗?

最佳答案

这是您需要的:

    final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
if(!condition)
handler.postDelayed(this, 1000);
else {
// do actions
condition = true;
}
}
}, 1000);
}

关于java - 如何在java中每1秒检查一些条件直到为真,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34033751/

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