Questions tagged «threadpool»

将资源集中到给定的限制中,并自动将任务分配给开放工作人员。

8
将ExecutorService转换为Java中的守护程序
我正在Java 1.6中使用ExecutoreService,其启动方式仅由 ExecutorService pool = Executors.newFixedThreadPool(THREADS). 当我的主线程完成时(以及线程池处理的所有任务),该池将阻止我的程序关闭,直到我显式调用 pool.shutdown(); 是否可以通过某种方式将此池使用的内部线程管理转换为守护线程来避免调用此方法?还是我在这里想念什么。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.