gpt4 book ai didi

java - 如何在java中每5秒运行一次for循环内的代码?

转载 作者:行者123 更新时间:2023-12-01 17:58:08 28 4
gpt4 key购买 nike

我想每 5 秒执行一次 for 循环内的特定代码。

我怎样才能做到这一点?

最佳答案

在这种情况下,java.util.Timer 将是更合适的解决方案。计时器允许您每 x 毫秒执行一个函数。不过,您必须在循环之外定义和调用计时器。

或者,您可以查看 link @Filburt 建议查看您可以在其中使用当前时间每 x 秒在循环中执行一段代码。

如果您仍想使用计时器解决方案,请按以下方式设置:

Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run () {
// code to execute
}
}, MILLISECONDS); // replace MILLISECONDS with the amount of milliseconds between each execution.

请注意,计时器本身并不知道何时停止。您可以在匿名类中创建一个字段,对每次执行进行计数,并在达到特定数字时取消计时器:

Timer timer = new Timer();
timer.schedule(new TimerTask() {
int times = 0;

@Override
public void run () {
if (times == 5) { // replace 5 with the amount of times you want the code executed.
timer.cancel();
return;
}
// code to execute
times++;
}
}, MILLISECONDS);

关于java - 如何在java中每5秒运行一次for循环内的代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60681469/

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