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

浅谈Java中hashCode的正确求值方法

程序员文章站 2023-12-03 09:59:52
本文研究的主要是java中hashcode的正确求值方法的相关内容,具体如下。 散列表有一项优化,可以将对象的散列码(hashcode)缓存起来,如果散列码不匹配,就不会...

本文研究的主要是java中hashcode的正确求值方法的相关内容,具体如下。

散列表有一项优化,可以将对象的散列码(hashcode)缓存起来,如果散列码不匹配,就不会检查对象的等同性而直接认为成不同的对象。如果散列码(hashcode)相等,才会检测对象是否相等(equals)。

如果对象具有相同的散列码(hashcode),他们会被映射到同一个散列桶中。如果散列表中所有对象的散列码(hashcode)都一样,那么该散列表就会退化为链表(linked list),从而大大降低其查询效率。

一个好的散列函数通常倾向于“为不想等的对象产生不相等的散列码”。理想情况下,散列函数应该把集合中不想等的实例均匀地分布到所有可能的散列上,但是想要完全达到这种理想的情形是非常困难的,下面给出一个相对简单有效的散列方法:

1.把某个非零的常数值,比如说17,保存在一个名为result的int类型的变量中。

2.对于对象中的每个关键域f(指equals方法中涉及的每个域),完成以下步骤:

  • 为该域计算int类型的散列码c
  • 如果该域是boolean类型,则计算 ( f ? 1 : 0 )
  • 如果该域是byte、char、short或者int类型,则计算 ( ( int ) f )
  • 如果该域是long类型,则计算 ( int ) ( f ^ ( f >>> 32 ) )
  • 如果该域是float类型,则计算float.floattointbits(f)
  • 如果该域是double类型,则计算double.doubletolongbits(f),然后按照上述步骤为得到的long类型值再计算散列值
  • 如果该域是一个对象引用,并且该类的equals方法通过递归地调用equals的方式来比较它的域,那么同样为这个域按上述方法递归地调用hashcode
  • 如果该域是一个数组,则要把每一个元素当作单独的域来处理,递归地应用上述原则,如果数组中的每一个元素都很重要,也可以直接使用arrays.hashcode方法。
  • 按照下面的公式,把上述步骤得到的散列码c依次合并到result中:result = 31 * result + c;   乘法运算是为了得到一个更好的散列函数。比如如果string的散列函数省略了乘法,那么只是字母顺序不同的所有字符串都会有相同的散列码。这里之所以选择31,是因为它是一个奇素数。如果乘数是偶数,并且乘法溢出的话,信息就会丢失,因为与2相乘等价于位移。使用素数的好处并不是很明显,但是习惯上都使用素数来计算散列结果。31有个很好的特性,即用移位和减法来代替乘法,可以得到更好的性能:31 * i == ( i << 5 ) - i。现在的vm均可以自动实现这种优化。

如果一个类是不可变的(所有域都是final修饰,并且所有域都为基本类型或者也是不可变类),并且计算散列码的开销也比较大,那么就应该考虑把散列码缓存在对象内部。

public class hashcodedemo {
  static class hashcodeclass {
    private final boolean bresult;
    private final byte bytevalue;
    private final char charvalue;
    private final short shortvalue;
    private final int intvalue;
    private final long longvalue;
    private final float floatvalue;
    private final double doublevalue;
    private final string str;
    private final int[] arrayvalue;

    //volatile表示每次均在内存中去存取该变量,以保证该变量是最新的
    private volatile int hashcode;

    public hashcodeclass() {
      bresult = false;
      bytevalue = 1;
      charvalue = 'a';
      shortvalue = 1;
      intvalue = 1;
      longvalue = 1l;
      floatvalue = 1.0f;
      doublevalue = 1.0d;
      str = getclass().getname();
      arrayvalue = new int[] {1,2,3,4,5};
    }

    @override
    public int hashcode() {
      if(hashcode == 0) {
        // 设置一个非零的初始值,可以增加零域的冲突性
        int result = 17;
        // 如果省略乘数,那么只是字母顺序不同的所有字符串都会有相同的散列码
        final int hash_code = 31;
        result = hash_code * result + (bresult ? 1 : 0);
        result = hash_code * result + bytevalue;
        result = hash_code * result + charvalue;
        result = hash_code * result + shortvalue;
        result = hash_code * result + intvalue;
        result = hash_code * result + (int) (longvalue ^ (longvalue >>> 32));
        result = hash_code * result + float.floattointbits(floatvalue);
        long doublelongvalue = double.doubletolongbits(doublevalue);
        result = hash_code * result + (int) (doublelongvalue ^ (doublelongvalue >>> 32));
        result = hash_code * result + (str == null ? 0 : str.hashcode());
        system.out.println("str=" + str + ", str.hashcode=" + str.hashcode());
        result = hash_code * result + arrayvalue.hashcode();
        return result;
      } 
      return hashcode;
    }
  }

  public static void main(string[] args) {
    hashcodeclass obj = new hashcodeclass();
    system.out.println("obj.hashcode=" + obj.hashcode());
    system.out.println("obj="+obj.tostring());
  }
}

输出

str=com.demo.test.hashcodedemo$hashcodeclass, str.hashcode=-205823051
obj.hashcode=946611167
str=com.demo.test.hashcodedemo$hashcodeclass, str.hashcode=-205823051
obj=com.demo.test.hashcodedemo$hashcodeclass@386c23df

总结

以上就是本文关于浅谈java中hashcode的正确求值方法的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!