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

HashMap源码中一个算法tableSizeFor

时间:2019-01-05 18:21:27      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:The   ble   shm   返回   specified   for   val   大于等于   city   

阅读JDK1.8版本HashMap源码看到的一段代码,返回大于等于指定入参的最小2的幂。

 1     /**
 2      * The maximum capacity, used if a higher value is implicitly specified
 3      * by either of the constructors with arguments.
 4      * MUST be a power of two <= 1<<30.
 5      */
 6     static final int MAXIMUM_CAPACITY = 1 << 30;
 7 
 8     /**
 9      * Returns a power of two size for the given target capacity.
10      */
11     static final int tableSizeFor(int cap) {
12         int n = cap - 1;
13         n |= n >>> 1;
14         n |= n >>> 2;
15         n |= n >>> 4;
16         n |= n >>> 8;
17         n |= n >>> 16;
18         return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
19     }

int n = cap-1;防止入参本身为2的幂,若不进行减一操作,结果将得到本身的2倍;

HashMap源码中一个算法tableSizeFor

标签:The   ble   shm   返回   specified   for   val   大于等于   city   

原文地址:https://www.cnblogs.com/caster-xzn/p/10225330.html

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