【Java面试】hashCode与equals

你重写过 hashcode 和 equals 么,为什么重写equals时必须重写hashCode方法?

  • hashCode()介绍

    • hashCode()定义在JDK的Object.java中,意味着Java中所有的类都包含有hashCode()函数。

      • Object.java源码中介绍
      /**
           * Returns a hash code value for the object. This method is
           * supported for the benefit of hash tables such as those provided by
           * {@link java.util.HashMap}.
           * 

      * The general contract of {@code hashCode} is: *

        *
      • Whenever it is invoked on the same object more than once during * an execution of a Java application, the {@code hashCode} method * must consistently return the same integer, provided no information * used in {@code equals} comparisons on the object is modified. * This integer need not remain consistent from one execution of an * application to another execution of the same application. *
      • If two objects are equal according to the {@code equals(Object)} * method, then calling the {@code hashCode} method on each of * the two objects must produce the same integer result. *
      • It is not required that if two objects are unequal * according to the {@link java.lang.Object#equals(java.lang.Object)} * method, then calling the {@code hashCode} method on each of the * two objects must produce distinct integer results. However, the * programmer should be aware that producing distinct integer results * for unequal objects may improve the performance of hash tables. *
      *

      * As much as is reasonably practical, the hashCode method defined by * class {@code Object} does return distinct integers for distinct * objects. (This is typically implemented by converting the internal * address of the object into an integer, but this implementation * technique is not required by the * Java™ programming language.) * * @return a hash code value for this object. * @see java.lang.Object#equals(java.lang.Object) * @see java.lang.System#identityHashCode */ public native int hashCode();

    • hashCode() 的作用是获取哈希码,也称为散列码;它实际上返回一个int整数。这个哈希码的作用是确定该对象在哈希表中的索引位置。

    • 散列表储存的是键值对(key-value),它的特点是:能根据“键”快速的检索出对应的“值”。这其中就是利用了散列码(可以快速找到所需要的对象)

    为什么要有hashCode

    • 我们先以“HashSet 如何检查重复”为例子来说明为什么要有 hashCode: 当你把对象加入 HashSet 时,HashSet 会先计算对象的 hashcode 值来判断对象加入的位置,同时也会与其他已经加入的对象的 hashcode 值作比较,如果没有相符的hashcode,HashSet会假设对象没有重复出现。但是如果发现有相同 hashcode 值的对象,这时会调用 equals()方法来检查 hashcode 相等的对象是否真的相同。如果两者相同,HashSet 就不会让其加入操作成功。如果不同的话,就会重新散列到其他位置。(摘自我的Java启蒙书《Head first java》第二版)。这样我们就大大减少了 equals 的次数,相应就大大提高了执行速度。

    • 通过我们可以看出:hashCode() 的作用就是获取哈希码,也称为散列码;它实际上是返回一个int整数。这个哈希码的作用是确定该对象在哈希表中的索引位置。hashCode() 在散列表中才有用,在其它情况下没用。 在散列表中hashCode() 的作用是获取对象的散列码,进而确定该对象在散列表中的位置。

    hashCode()与equals()的相关规定

    1.如果两个对象相等,则hashcode一定也是相同的
    2.两个对象相等,对两个对象分别调用equals方法都返回true
    3.两个对象有相同的hashcode值,他们也不一定是相等的
    4.因此 equals 方法被覆盖过,则 hashCode 方法也必须被覆盖
    5.hashCode()的默人行为是对堆上的对象产生独特值。如果没有重写 hashCode(),则该 class 的两个对象无论如果都不会相等(即使这两个对象指向相同的数据)

来自:hashCode 与 equals (重要)

你可能感兴趣的:(面试问题)