ThreadFactory threadFactory,
RejectedExecutionHandler handler);
1)corePoolSize 核心线程数
(2)maximumPoolSize 最大线程数
(3)keepAliveTime 线程被回收前的空闲时间
(4)workQueue 任务队列
(5)threadFactory 线程创建工厂
(6)handler 线程池对拒绝任务的处理策略
(b)ThreadPoolExecutor运行原理:
ThreadPoolExecutor将根据corePoolSize和maximumPoolSize设置的值调整线程池大小。当新任务调用方法execute(Runnable)提交时,如果运行的线程少于corePoolSize,则创建新线程来处理请求。如果正在运行的线程数等于corePoolSize时,则新任务被添加到队列中,直到队列满。当队列满了后,会继续开辟新线程来处理任务,但不超过最大线程数。当任务队列满了并且已开辟了最大线程数,此时又来了新任务,ThreadPoolExecutor会拒绝服务。
(c)keepAliveTime注意事项:
/**
-
Timeout in nanoseconds for idle threads waiting for work.
-
Threads use this timeout when there are more than corePoolSize
-
present or if allowCoreThreadTimeOut. Otherwise the