java获取线程池中指定线程数_获取线程池中任务执⾏数量通过线程池进⾏任务处理,有时我们需要知道线程池中任务的执⾏状态。
通过ThreadPoolExecutor的相关API实时获取线程数量,排队任务数量,执⾏完成线程数量等信息。
实例
private static ExecutorService es = new ThreadPoolExecutor(50, 100, 0L, TimeUnit.MILLISECONDS,
new LinkedBlockingQueue(
100000
));
public static void main(String[] args) throws Exception
{
for (int i = 0; i < 100000; i++) {
System.out.print(1);
try{
Thread.sleep(1000);
}
java线程池创建的四种catch(InterruptedException e) {
e.printStackTrace();
}
});
}
ThreadPoolExecutor tpe = ((ThreadPoolExecutor) es);
while (true) {
System.out.println();
int queueSize = Queue().size();
System.out.println("当前排队线程数:"+ queueSize);
int activeCount = Activ

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。