首页 > 图灵资讯 > 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) {}
参数介绍: