为什么在我们重写了equals方法时一般还都要重写hascode

解决方案 »

  1.   

    public int hashCode()
    If two objects are equal according to the equals(Object) method, then calling the hashCode method on each of the two objects must produce the same integer result.
      

  2.   

    hashcode()默认是根据对象内存的地址生成的hash码
    重写equals时必须重写hashcode()方法,JVM才认为是同一对象
      

  3.   

    根据java规范,a.equals(b)必定有a.hashCode() == b.hashCode(),反之不然。
    如果没有重写hashCode,则在使用Map、Set之类的时候会出现错误
      

  4.   

    If two objects are equal according to the equals(Object) method, then calling the 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 equals(java.lang.Object) method, then calling the 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 hashtables.