Heim > Fragen und Antworten > Hauptteil
黄舟2017-04-18 10:48:15
一般使用线程池都是单例的。
private static final ExecutorService executors = Executors.newCachedThreadPool();
你的代码里已经出现了两个线程池的实例了。所以出现了pool-2。
pool-2
阿神2017-04-18 10:48:15
亲,我也遇到了,你是怎么解决的啊?