chengfengjie / chengfengjie.github.io

我叫MT
1 stars 0 forks source link

线程池 #18

Open chengfengjie opened 6 years ago

chengfengjie commented 6 years ago

一个创建线程池的构造器

ThreadPoolExecutor(
    int corePoolSize,
    int maximumPoolSize, 
    long keepAliveTime, 
    TimeUnit unit,
    BlockingQueue<Runnable> workQueue,
    RejectedExecutionHandler handler) 

参数说明: