我有一个后台任务循环,如下所示:
Timeline fiveSecondsWonder = new Timeline(new KeyFrame(Duration.seconds(1), event -> {
if (hourNow >= cashCutOff_Start && hourNow <= cashCutOff_End - 1) {
//Run the code once
}
}));
fiveSecondsWonder.setCycleCount(Timeline.INDEFINITE);
fiveSecondsWonder.play();
这段代码确实每隔一秒钟就会产生一次循环。但是,一旦此代码运行,我想使一行代码可执行。
最佳答案
简单的解决方案分两个步骤。
创建一个布尔变量:
private boolean hasRun = false;
在时间轴中添加if语句:
Timeline fiveSecondsWonder = new Timeline(new KeyFrame(Duration.seconds(1), event -> {
//check if code has run before
if(!hasRun){
//this will run only once
//by setting hasRun = true;
hasRun=true;
//add your code here...
}
//this code will run in every KeyFrame
//add your code here...
}));
fiveSecondsWonder.setCycleCount(Timeline.INDEFINITE);
fiveSecondsWonder.play();
关于java - 如何使代码在后台任务循环中运行一次?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55020217/