Java 线程池 这玩意前几天面试被问到了,和数据库连接池搞混了,没答好,随手mark一下吧。 线程池核心类:ThreadPoolExecutor 主要介绍它的核心构造方法 public ThreadPoolExecutor(int corePoolSize,int maximumPoolSize,long keepAliveTime,TimeUnit unit, BlockingQueue<Runnable> workQueue,ThreadFactory threadFactory,RejectedExecutionHandler handler); ...