ScheduledExecutorService

ScheduledExecutorService

ScheduledExecutorService
是ScheduledExecutorService在主线程上运行还是在后台线程上运行,我通过了documentation here 但没有找到。
任何帮助将不胜感激。

最佳答案

当从the ScheduledExecutorService set of factory methods创建实例时,Executors使用后台线程,该线程来自隐式或显式指定的线程池。

请注意,ScheduledExecutorService是标准Java类(java.util.concurrent.ScheduledExecutorService)。主应用程序线程来自Android框架。

10-07 19:41