Java线程池:线程池总结(三)

本文详细介绍了Java中线程池的使用方法,包括五种线程池类型、四种拒绝策略及三种阻塞队列的应用场景,并通过示例代码展示了如何创建和使用线程池。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

线程池总结

package threadPool;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.concurrent.*;

/**
 *
 * 线程池工厂的所有参数示例
 * @title: ThreadPoolAllTest
 * @projectName JavaTest
 * @Date: 2021/6/25 16:47
 * @Author: lei.yu-esint
 * @Description:
 *
 * Java-五种线程池,四种拒绝策略,三种阻塞队列(常用)
 *
 * 三种阻塞队列:
 *     BlockingQueue<Runnable> workQueue = null;
 *     workQueue = new ArrayBlockingQueue<>(5);//基于数组的先进先出队列,有界
 *     workQueue = new LinkedBlockingQueue<>();//基于链表的先进先出队列,无界
 *     workQueue = new SynchronousQueue<>();//无缓冲的等待队列,无界
 * 四种拒绝策略:
 *     RejectedExecutionHandler rejected = null;
 *     rejected = new ThreadPoolExecutor.AbortPolicy();//默认,队列满了丢任务抛出异常
 *     rejected = new ThreadPoolExecutor.DiscardPolicy();//队列满了丢任务不异常
 *     rejected = new ThreadPoolExecutor.DiscardOldestPolicy();//将最早进入队列的任务删,之后再尝试加入队列
 *     rejected = new ThreadPoolExecutor.CallerRunsPolicy();//如果添加到线程池失败,那么主线程会自己去执行该任务
 * 五种线程池:
 *     ExecutorService threadPool = null;
 *     threadPool = Executors.newCachedThreadPool();//有缓冲的线程池,线程数 JVM 控制
 *     threadPool = Executors.newFixedThreadPool(3);//固定大小的线程池
 *     threadPool = Executors.newScheduledThreadPool(2);
 *     threadPool = Executors.newSingleThreadExecutor();//单线程的线程池,只有一个线程在工作
 *     threadPool = new ThreadPoolExecutor();//默认线程池,可控制参数比较多   
 *
 */
public class ThreadPoolAllTest {

    //psvm 快捷键生成
    public static void main(String[] args) {
        ThreadPoolAllServiceTest threadPoolAllServiceTest = new ThreadPoolAllServiceTest();

    }

}

//线程池
class ThreadPoolAllServiceTest{

    public static void ThreadPoolAllService() throws Exception {
        //基础参数
        int corePoolSize=2;//最小活跃线程数
        int maximumPoolSize=5;//最大活跃线程数
        int keepAliveTime=5;//指定线程池中线程空闲超过 5s 后将被回收
        TimeUnit unit = TimeUnit.SECONDS;//keepAliveTime 单位

        //阻塞队列
        BlockingQueue<Runnable> workQueue = null;
        workQueue = new ArrayBlockingQueue<>(5);//基于数组的先进先出队列,有界
        workQueue = new LinkedBlockingQueue<>();//基于链表的先进先出队列,无界
        workQueue = new SynchronousQueue<>();//无缓冲的等待队列,无界
        //拒绝策略
        RejectedExecutionHandler rejected = null;
        rejected = new ThreadPoolExecutor.AbortPolicy();//默认,队列满了丢任务抛出异常
        rejected = new ThreadPoolExecutor.DiscardPolicy();//队列满了丢任务不异常
        rejected = new ThreadPoolExecutor.DiscardOldestPolicy();//将最早进入队列的任务删,之后再尝试加入队列
        rejected = new ThreadPoolExecutor.CallerRunsPolicy();//如果添加到线程池失败,那么主线程会自己去执行该任务
        //使用的线程池
        ExecutorService threadPool = null;
        threadPool = Executors.newCachedThreadPool();//有缓冲的线程池,线程数 JVM 控制
        threadPool = Executors.newFixedThreadPool(3);//固定大小的线程池
        threadPool = Executors.newScheduledThreadPool(2); //周期性定时任务线程
        threadPool = Executors.newSingleThreadExecutor();//单线程的线程池,只有一个线程在工作
        threadPool = new ThreadPoolExecutor(
                corePoolSize,
                maximumPoolSize,
                keepAliveTime,
                unit,
                workQueue,
                rejected);//默认线程池,可控制参数比较多
        //执行无返回值线程
        TaskRunnable taskRunnable = new TaskRunnable();
        threadPool.execute(taskRunnable);
        List<Future<String>> futres = new ArrayList<>();
        for(int i=0;i<10;i++) {
            //执行有返回值线程
            TaskCallable taskCallable = new TaskCallable(i);
            Future<String> future = threadPool.submit(taskCallable);
            futres.add(future);
        }
        for(int i=0;i<futres.size();i++){
            String result = futres.get(i).get();
            System.out.println(i+" result = "+result);
        }
    }
    /**
     * 无返回值的线程,使用 threadpool.execut() 执行
     */
    public static class TaskRunnable implements Runnable{
        @Override
        public void run() {
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println(Thread.currentThread().getName() + " runnable result!");
        }
    }
    /**
     * 有返回值的线程,使用 threadpool.submit() 执行
     */
    public static class TaskCallable implements Callable<String> {
        public TaskCallable(int index){
            this.i=index;
        }
        private int i;
        @Override
        public String call() throws Exception {
            int r = new Random().nextInt(5);
            try {
                Thread.sleep(r);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            //System.out.println("callable result!");
            return Thread.currentThread().getName()+" callable index="+i +",sleep="+r;
        }
    }

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

会飞的小蜗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值