欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java线程池

程序员文章站 2024-01-16 11:27:28
前言:线程池技术是通过对线程资源的统一管理来达到对线程资源的重复利用,降低线程频繁创建和销毁的开销。java jdk在java.util.concurrent并发包中有一*成的对线程池的实现方案,我们可以直接拿来使用,快速实现多线程并发编程场景。这里对concurrent包中的线程池框架的实现进行 ......

前言:线程池技术是通过对线程资源的统一管理来达到对线程资源的重复利用,降低线程频繁创建和销毁的开销。java jdk在java.util.concurrent并发包中有一*成的对线程池的实现方案,我们可以直接拿来使用,快速实现多线程并发编程场景。这里对concurrent包中的线程池框架的实现进行一些分析。

 

java线程池使用代码示例

public class test {
    public static void main(string[] args) throws exception {
        task task1 = new task(1);
        task task2 = new task(2);

//        executorservice normalexecutor = new threadpoolexecutor(2, 4, 200, timeunit.milliseconds,
//                new arrayblockingqueue<runnable>(5));
//        executorservice singleexecutor = executors.newsinglethreadexecutor();
//        executorservice cachedexecutor = executors.newcachedthreadpool();
        //创建线程池服务
     executorservice executor = executors.newfixedthreadpool(2);
     //将任务交给线程池执行 executor.execute(task1); executor.execute(task2); executor.shutdown(); } } //可以提交给线程池执行的任务类,线程池执行任务时会执行其中的run方法 class task implements runnable { private int tasknum; public task(int num) { this.tasknum = num; } public void run() { system.out.println("开始执行任务:" + tasknum); try { thread.currentthread().sleep(10000); } catch (interruptedexception e) { e.printstacktrace(); } system.out.println("结束执行任务:" + tasknum); } }

 

执行结果如下:

java线程池

从结果可以看出后提交给线程池的任务先执行了。所以执行execute方法时只是将任务提交给线程池去管理,任务的执行顺序是由线程池内部去协调的。

 

java线程池实现原理

java线程池的核心实现类是threadpoolexecutor,该类的继承关系如下:

java线程池

最底层其实现的接口executor的定义如下:

public interface executor {
    void execute(runnable command);
}

 

 可以看到,该接口只有一个方法execute,threadpoolexecutor实现该方法后,通过该方法的调用将任务提交给线程池。所以threadpoolexecutor.execute里的逻辑就是线程池执行任务的密码所在。

这里先关注下threadpoolexecutor类中如下几个比较重要的常量

//记录当前线程池中工作线程的数量
private final atomicinteger ctl = new atomicinteger(ctlof(running, 0));
//将一个整形的32位分为两部分,高3位和低29位
private static final int count_bits = integer.size - 3;
//将整形的低29位用于存储工作线程数,所以可开启的最大线程数为2的29次方
private static final int capacity   = (1 << count_bits) - 1;

//将整形的高3位用于存储线程池的当前状态值
private static final int running    = -1 << count_bits;
private static final int shutdown   =  0 << count_bits;
private static final int stop       =  1 << count_bits;
private static final int tidying    =  2 << count_bits;
private static final int terminated =  3 << count_bits;

 

threadpoolexecutor里很多地方使用了类似的位运算的方式进行状态值的存储和逻辑运算来提高运行效率

现在看下threadpoolexecutor类的构造函数,构造函数的参数揭示了线程池的核心变量:

public threadpoolexecutor(int corepoolsize,
                              int maximumpoolsize,
                              long keepalivetime,
                              timeunit unit,
                              blockingqueue<runnable> workqueue,
                              threadfactory threadfactory,
                              rejectedexecutionhandler handler) {
        if (corepoolsize < 0 ||
            maximumpoolsize <= 0 ||
            maximumpoolsize < corepoolsize ||
            keepalivetime < 0)
            throw new illegalargumentexception();
        if (workqueue == null || threadfactory == null || handler == null)
            throw new nullpointerexception();
        this.acc = system.getsecuritymanager() == null ?
                null :
                accesscontroller.getcontext();
        this.corepoolsize = corepoolsize;
        this.maximumpoolsize = maximumpoolsize;
        this.workqueue = workqueue;
        this.keepalivetime = unit.tonanos(keepalivetime);
        this.threadfactory = threadfactory;
        this.handler = handler;
    }

 

这里涉及的几个核心变量解释如下:

corepoolsize:核心线程数,线程池运行稳定后维持的线程数
maximumpoolsize:最大线程数,线程池最多可以使用的线程数
keepalivetime:超时时间,线程在该超时时间间隔内从任务队列未获取到任务时,若线程池工作线程数超过corepoolsize,则关闭当前线程,且线程池线程数减1
unit:keepalivetime使用的时间单位
workqueue:任务存放的队列
threadfactory:线程工厂,线程池使用该工厂类的方法产生线程
handler:当线程池中线程数已达最大值,且任务队列已满,无法处理新加入的任务时。由自定义的handler处理该任务

threadpoolexecutor.execute对任务的处理流程如下图:

java线程池

 

 threadpoolexecutor.execute的执行示意图如下:

java线程池

 

 通过threadpoolexecutor构造函数的参数,我们发现如果我们要通过threadpoolexecutor创建一个适合我们业务场景的线程池,需要对threadpoolexecutor的运行原理和几个核心参数有比较深入的理解。线程池的设计者在这方面也做了一定的考虑,在concurrent包中,提供了一个有用的工具类executors,这个类提供了一些工厂方法可以帮助我们简单方便的创建出适用于各种场景的线程池,有些方法就是对threadpoolexecutor做了简单的封装。其中,业务上比较常用到的获取线程池的工厂方法有如下几个:

//创建固定大小的线程池,在并发任务比较多的场景中比较常用
public static executorservice newfixedthreadpool(int nthreads) {
    return new threadpoolexecutor(nthreads, nthreads,
                                  0l, timeunit.milliseconds,
                                  new linkedblockingqueue<runnable>());
}

//创建一个单线程化的线程池,线程池只使用一个线程执行所有的任务,可以保证任务的执行顺序
public static executorservice newsinglethreadexecutor() {
    return new finalizabledelegatedexecutorservice
        (new threadpoolexecutor(1, 1,
                                0l, timeunit.milliseconds,
                                new linkedblockingqueue<runnable>()));
}

//创建一个可缓存线程池,队列只能存放一个元素,任务会及时被线程处理,适用于对任务处理的及时性要求比较高的场景
public static executorservice newcachedthreadpool() {
    return new threadpoolexecutor(0, integer.max_value,
                                  60l, timeunit.seconds,
                                  new synchronousqueue<runnable>());
}