美文网首页程序员
Java - 线程池总体预览

Java - 线程池总体预览

作者: 夹胡碰 | 来源:发表于2021-01-02 20:02 被阅读0次

Executors提供多种线程池的实现,下面对每种线程池进行简单介绍。

1. newCachedThreadPool

无限线程池

public static ExecutorService newCachedThreadPool() {
    return new ThreadPoolExecutor(0, Integer.MAX_VALUE,
                                  60L, TimeUnit.SECONDS,
                                  new SynchronousQueue<Runnable>());
}
2. newFixedThreadPool

定长线程池,超出长度加入到阻塞队列中。

public static ExecutorService newFixedThreadPool(int nThreads) {
    return new ThreadPoolExecutor(nThreads, nThreads,
                                  0L, TimeUnit.MILLISECONDS,
                                  new LinkedBlockingQueue<Runnable>());
}
3. newSingleThreadExecutor

单线程线程池

public static ExecutorService newSingleThreadExecutor() {
    return new FinalizableDelegatedExecutorService
        (new ThreadPoolExecutor(1, 1,
                                0L, TimeUnit.MILLISECONDS,
                                new LinkedBlockingQueue<Runnable>()));
}
4. newScheduledThreadPool

定时任务线程池,使用DelayedWorkQueue延迟队列

public static ScheduledExecutorService newScheduledThreadPool(int corePoolSize) {
    return new ScheduledThreadPoolExecutor(corePoolSize);
}
public ScheduledThreadPoolExecutor(int corePoolSize) {
    super(corePoolSize, Integer.MAX_VALUE, 0, NANOSECONDS,
          new DelayedWorkQueue());
}
5. newSingleThreadScheduledExecutor

单线程定时任务线程池

public static ScheduledExecutorService newSingleThreadScheduledExecutor() {
    return new DelegatedScheduledExecutorService
        (new ScheduledThreadPoolExecutor(1));
}
6. newWorkStealingPool

抢占线程池

public static ExecutorService newWorkStealingPool() {
    return new ForkJoinPool
        (Runtime.getRuntime().availableProcessors(),
         ForkJoinPool.defaultForkJoinWorkerThreadFactory,
         null, true);
}

相关文章

网友评论

    本文标题:Java - 线程池总体预览

    本文链接:https://www.haomeiwen.com/subject/lrtyoktx.html