我根据this article的提醒示例测试了一个简单的Timer和TimerTask。
唯一的区别是我在timer.cancel()之前使用条件。在原始示例中,线程按预期停止,但在我的代码中,它不会停止。怎么了?
import java.util.Timer;
import java.util.TimerTask;
public class ConditionalReminder {
Timer timer;
public ConditionalReminder(int seconds) {
timer = new Timer();
timer.schedule(new RemindTask(), seconds*1000);
}
class RemindTask extends TimerTask {
int counter;
public void run() {
counter++;
System.out.format("Time's up!%n");
if(counter==100)
{
timer.cancel(); //should terminate thread
}
}
}
public static void main(String args[]) {
new ConditionalReminder(2);
System.out.format("Task scheduled.%n");
}
}
答案 0 :(得分:2)
Timer.schedule(TimerTask, long)
计划在提供的延迟之后执行一次的任务。如果您想重复此操作,则需要使用Timer.schedule(TimerTask, long, long)
。例如:
int delay = 0;
int interval = seconds * 1000;
timer.schedule(new RemindTask(), delay, interval);