最详细的HashCode源码解析:为什么选用31作为基数

 

目录

 

前言:

HashCode源码:

为什么选用31作为基数?

            ​

       小编需要您的关注哦!您的赞是对我最大的鼓励!


前言:

    无序的集合在hashmap中会调用hashcode()方法,

HashCode源码:

    /**
     * Returns a hash code for this string. The hash code for a
     * {@code String} object is computed as
     * <blockquote><pre>
     * s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
     * </pre></blockquote>
     * using {@code int} arithmetic, where {@code s[i]} is the
     * <i>i</i>th character of the string, {@code n} is the length of
     * the string, and {@code ^} indicates exponentiation.
     * (The hash value of the empty string is zero.)
     *
     * @return  a hash code value for this object.
     */
    public int hashCode() {
        int h = hash;
        if (h == 0 && value.length > 0) {
            char val[] = value;

            for (int i = 0; i < value.length; i++) {
                h = 31 * h + val[i];
            }
            hash = h;
        }
        return h;
    }

   注意解释中  * s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]

为什么选用31作为基数?

HashCode.每个对象根据值计算HashCode,这个code大小虽然不奢求必须唯一(因为这样通常计算会非常慢),但是要尽可能的不要重复,因此基数要尽量的大。另外,31*N可以被编译器优化为 
左移5位后减1,有较高的性能。

1.基数要用质数 
质数的特性(只有1和自己是因子)能够使得它和其他数相乘后得到的结果比其他方式更容易产成唯一性,也就是hash code值的冲突概率最小。 


2.选择31是观测分布结果后的一个选择,不清楚原因,但的确有利。

任何的限制,都是从内心开始的!

当你不再忍耐,不再克制,才会真正的成熟!

在做任何事情时,都要有坚定且清晰的目标,还要牢记目标!

            

       小编需要您的关注哦!您的赞是对我最大的鼓励!

猜你喜欢

转载自blog.csdn.net/l_mloveforever/article/details/110824154