ThreadPoolExecutor线程池
2021-06-08 本文已影响0人
咸土豆
重要参数:
private final BlockingQueue<Runnable> workQueue;
private final ReentrantLock mainLock = new ReentrantLock();
private final HashSet<Worker> workers = new HashSet<Worker>();
执行流程

提交任务

执行任务

生命周期
