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.
我目前正在修改应用程序以使用 ScheduledExecutorService 代替 Timer,但我不知道如何处理旧的Timer.purge().
Timer.purge()
Executor 是如何处理事情的?我需要担心什么吗?
Executor 没有等价物。当任务被取消时,它们的引用将从 Executor 中删除。
但是 Executor 的生命周期是通过管理的,shutdown()所以当不再需要 Executor 时应该调用它。
shutdown()