香蕉战斗机

文章
5
资源
0
加入时间
2年10月17天

线程池源码详解

我们介绍线程池以最关键的类ThreadPoolExecutor讲起。一、继承关系图二、ThreadPoolExecutor类介绍1、相关属性AtomicInteger ctl:原子整数,记录工人数量workerCount和线程池状态runStateBoolean terminate:表示线程池关闭瞬间的状态。当线程池执行stop或stopNow方法时,此时程序还没有完全终止,isTerminating()为true,否则为false;当线程关闭结束isTerminated()为true。in