欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

String类的hashcode计算

程序员文章站 2024-03-22 17:37:28
...
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;
}

源码如上。
关于为什么取31为权

主要是因为31是一个奇质数,所以31*i=32*i-i=(i<<5)-i,这种位移与减法结合的计算相比一般的运算快很多。

比如:

String ss = "abc";
String ss1 = new String("abc");
String ss2 = "abc";
System.out.println(ss.equals(ss1));//true
System.out.println(ss.equals(ss2));//true
System.out.println(ss == ss1);//false

hashcode值一样,对象不一定一样
对象一样,hashcode值一样