码迷,mamicode.com
首页 > 编程语言 > 详细

线程池之ThreadPoolExecutor源码解析

时间:2019-09-05 01:01:54      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:常量   span   tom   exe   run   vat   左移   final   nal   

1.变量

ThreadPoolExecutor先定义了这几个常量,初看时一脸懵逼,其实它就是用int的二进制高三位来表示线程池的状态,

先回顾一下位运算:

  1. <<’左移:右边空出的位置补0,其值相当于乘以2。
  2. ‘>>’右移:左边空出的位,如果是正数则补0,若为负数则补0或1,取决于所用的计算机系统OS X中补1。其值相当于除以2。
  3. 负数二进制由它的绝对值取反后加1
    private final AtomicInteger ctl = new AtomicInteger(ctlOf(RUNNING, 0));
    private static final int COUNT_BITS = Integer.SIZE - 3;// 29
    private static final int CAPACITY   = (1 << COUNT_BITS) - 1; // 1<<29=00100000 00000000 00000000 00000000   再减1=00011111 11111111 11111111 11111111
   // 1的二进制是001,取反是110,再加1是111,111就是-1的二进制,再左移29,
    private static final int RUNNING    = -1 << COUNT_BITS;// 11100000 00000000 00000000 00000000
    private static final int SHUTDOWN   =  0 << COUNT_BITS;// 00000000 00000000 00000000 00000000
    private static final int STOP       =  1 << COUNT_BITS;// 00100000 00000000 00000000 00000000
    private static final int TIDYING    =  2 << COUNT_BITS;// 01000000 00000000 00000000 00000000
    private static final int TERMINATED =  3 << COUNT_BITS;// 01100000 00000000 00000000 00000000

  

线程池之ThreadPoolExecutor源码解析

标签:常量   span   tom   exe   run   vat   左移   final   nal   

原文地址:https://www.cnblogs.com/akaneblog/p/11462549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!