当前位置: 首页 > 图灵资讯 > java面试题> java多线程面试题-线程池构造函数

java多线程面试题-线程池构造函数

来源:图灵教育
时间:2024-05-19 13:06:51
线程池构造函数
/*** 线程池构造函数7大参数*/public ThreadPoolExecutor(int corePoolSize,int maximumPoolSize,long keepAliveTime, TimeUnit unit,BlockingQueue<Runnable> workQueue,ThreadFactory threadFactory, RejectedExecutionHandler handler) {}

参数介绍: