目录
一、ThreadPoolExecutor(推荐)(重点)
1、参数
2、执行流程
3、常用方法
4、任务拒绝策略
二、Executors(不推荐)
1、常用方法
2、存在的问题
一、ThreadPoolExecutor(推荐)(重点)
1、参数
使用指定的初始化参数创建一个新的线程池对象
public ThreadPoolExecutor(int corePoolSize,
int maximumPoolSize,
long keepAliveTime,
TimeUnit unit,
BlockingQueue<Runnable> workQueue,
ThreadFactory threadFactory,