Java

1、equals常见面试题

先看几个常见的面试题,看看能不能都回答上来。

  • 1、equals和==有什么区别?
  • 2、hashcode相等的两个对象一定==相等吗?equals相等吗?
  • 3、两个对象用equals比较相等,那它们的hashcode相等吗?

如果不重写equalshashcode,那么它使用的是Object方法的实现。先简单看一下

  1. public boolean equals(Object obj) {
  2. return (this == obj);
  3. }
  4. public static int hashCode(Object o) {
  5. return o != null ? o.hashCode() : 0;
  6. }

2、为什么要重写equals

通过以上代码可以看出,Object提供的equals在进行比较的时候,并不是进行值比较,而是内存地址的比较。由此可以知晓,要使用equals对对象进行比较,那么就必须进行重写equals

3、重写equals不重写hashCode会存在什么问题

先看下面这段话
每个覆盖了equals方法的类中,必须覆盖hashCode。如果不这么做,就违背了hashCode的通用约定,也就是上面注释中所说的。进而导致该类无法结合所以与散列的集合一起正常运作,这里指的是HashMapHashSetHashTableConcurrentHashMap来自 Effective Java 第三版
结论:如果重写**equals**不重写**hashCode**它与散列集合无法正常工作。
既然这样那就拿最熟悉的HashMap来进行演示推导吧。HashMap中的key是不能重复的,如果重复添加,后添加的会覆盖前面的内容。那么看看HashMap是如何来确定key的唯一性的。

  1. static final int hash(Object key) {
  2. int h;
  3. return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
  4. }

查看代码发现,它是通过计算Map key的hashCode值来确定在链表中的存储位置的。那么这样就可以推测出,如果重写了equals但是没重写hashCode,那么可能存在元素重复的矛盾情况。
下面来演示一下

  1. public class Employee {
  2. private String name;
  3. private Integer age;
  4. public Employee(String name, Integer age) {
  5. this.name = name;
  6. this.age = age;
  7. }
  8. @Override
  9. public boolean equals(Object o) {
  10. if (this == o) return true;
  11. if (o == null || getClass() != o.getClass()) return false;
  12. Employee employee = (Employee) o;
  13. return Objects.equals(name, employee.name) &&
  14. Objects.equals(age, employee.age);
  15. }
  16. /*@Override
  17. public int hashCode() {
  18. return Objects.hash(name, age);
  19. }*/
  20. }
  1. public static void main(String[] args) {
  2. Employee employee1 = new Employee("冰峰", 20);
  3. Employee employee2 = new Employee("冰峰", 22);
  4. Employee employee3 = new Employee("冰峰", 20);
  5. HashMap<Employee, Object> map = new HashMap<>();
  6. map.put(employee1, "1");
  7. map.put(employee2, "1");
  8. map.put(employee3, "1");
  9. System.out.println("equals:" + employee1.equals(employee3));
  10. System.out.println("hashCode:" + (employee1.hashCode() == employee3.hashCode()));
  11. System.out.println(JSONObject.toJSONString(map));
  12. }

按正常情况来推测,map中只存在两个元素,employee2和employee3。
执行结果
为什么重写equals必须重写hashCode - 图1
出现这种问题的原因就是因为没有重写hashCode,导致map在计算key的hash值的时候,绝对值相同的对象计算除了不一致的hash值。


接下来打开hashCode的注释代码,看看执行结果
为什么重写equals必须重写hashCode - 图2

4、总结

如果重写了equals就必须重写hashCode,如果不重写将引起与散列集合(HashMapHashSetHashTableConcurrentHashMap)的冲突。