HashMap源码中一个算法tableSizeFor

Posted caster-xzn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HashMap源码中一个算法tableSizeFor相关的知识,希望对你有一定的参考价值。

阅读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的主要内容,如果未能解决你的问题,请参考以下文章

算法---hash算法原理(java中HashMap底层实现原理和源码解析)

HashMap与HashTable的哈希算法——JDK1.9源码阅读总结

hashMap源码算法问题

算法系列HashMap实现原理及源码分析

LRU算法实现,HashMap与LinkedHashMap源码的部分总结

HashMap源码分析