美文网首页
ThreadPoolExecutor线程池

ThreadPoolExecutor线程池

作者: 咸土豆 | 来源:发表于2021-06-08 17:19 被阅读0次

重要参数:

    private final BlockingQueue<Runnable> workQueue;

    private final ReentrantLock mainLock = new ReentrantLock();

    private final HashSet<Worker> workers = new HashSet<Worker>();



执行流程


提交任务


执行任务


生命周期

相关文章

网友评论

      本文标题:ThreadPoolExecutor线程池

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