只需通过以下方式取消返回的未来:scheduledAtFixedRate()
// Create the scheduler
ScheduledExecutorService scheduledExecutorService = Executors.newScheduledThreadPool(1);
// Create the task to execute
Runnable r = new Runnable() {
@Override
public void run() {
System.out.println("Hello");
}
};
// Schedule the task such that it will be executed every second
ScheduledFuture<?> scheduledFuture =
scheduledExecutorService.scheduleAtFixedRate(r, 1L, 1L, TimeUnit.SECONDS);
// Wait 5 seconds
Thread.sleep(5000L);
// Cancel the task
scheduledFuture.cancel(false);
需要注意的另一件事是,取消不会从计划程序中删除任务。它所确保的只是该方法始终返回 。如果您不断添加此类任务,这可能会导致内存泄漏。例如:如果您根据某些客户端活动或UI按钮单击启动任务,请重复n次并退出。如果该按钮被点击太多次,您可能最终会得到无法进行垃圾回收的大线程池,因为调度程序仍然有引用。isDone
true
您可能希望在 Java 7 及更高版本中可用的类中使用。为了向后兼容,默认值设置为 false。setRemoveOnCancelPolicy(true)
ScheduledThreadPoolExecutor