构造方法
ThreadPoolExecutor提供了四个构造方法,下面为参数最多的那个构造方法
public ThreadPoolExecutor(int corePoolSize, // 1
int maximumPoolSize, // 2
long keepAliveTime, // 3
TimeUnit unit, // 4
BlockingQueue<Runnable> workQueue, // 5
ThreadFactory threadFactory, // 6
RejectedExecutionHandler handler ) { //7
// ....
}
2021年5月28日大约 14 分钟