作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想每 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/
我是一名优秀的程序员,十分优秀!