重写一下hashCode方法

  
  
  
  
  1. class Person {  
  2.     @Override  
  3.     public int hashCode() {  
  4.         return new HashCodeBuilder().append(name).toHashCode();  
  5.     }  
  1. 覆写equals方法必须覆写hashCode方法

 

 

其中HashCodeBuilder是org.apache.commons.lang.builder包下的一个哈希码生成工具,使用起来非常方便,诸位可以直接在项目中集成。(为什么不直接写hashCode方法?因为哈希码的生成有很多种算法,自己写麻烦,事儿又多,所以采用拿来主义是最好的方法。)

你可能感兴趣的:(算法,equals,工具)