一个简化版线程池设计

目前业界线程池的设计,普遍采用的都是生产者 - 消费者模式。

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;

public class MyThreadPool {
    //阻塞队列实现生产者-消费者模式
    BlockingQueue<Runnable> workQueue;
    //内部工作线程
    List<WorkThread> threads = new ArrayList<>();

    public MyThreadPool(int poolSize, int queueSize) {
        this.workQueue = new LinkedBlockingQueue<>(queueSize);
        //创建工作线程
        for(int idx = 0; idx < poolSize; idx++) {
            WorkThread work = new WorkThread();
            work.start();
            threads.add(work);
        }
    }

    //提交任务
    void execute(Runnable command) {
        try {
            workQueue.put(command);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    //工作线程负责消费任务,并执行任务
    class WorkThread extends Thread {
        public void run() {
            while(true) {
                try {
                    Runnable task = workQueue.take();
                    task.run();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    public static void main(String[] args) {
        //创建线程池
        MyThreadPool pool = new MyThreadPool(6, 18);
        //提交任务
        pool.execute(()->{ System.out.println(Thread.currentThread() + " - demo"); });
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值