Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何停止定时器当前正在执行的任务。?如果我使用 timer.cancel() 它将取消计时器但执行当前正在执行的任务..那么有没有办法让我可以取消当前正在执行的任务?
在取消呼叫之后使用
timer.purge();
利用:
timer.cancel(); timer.purge()
purge() 从任务队列中删除所有取消的任务, timer.cancel() 取消定时器和所有计划任务。
也看看这篇文章