java 爲何重寫equals必定要重寫hashcode?

前言

最近複習,又看到了這個問題,在此記錄和整理,經過例子來講明這種狀況的緣由,使你們能夠清晰明白這個問題。java

初步探索

首先咱們要了解equals方法是什麼,hashcode方法是什麼。bash

equals方法

equals 是java的obejct類的一個方法,equals的源碼以下:markdown

public boolean equals(Object paramObject){
    return(this == paramObject);
}
複製代碼

由此咱們能夠看到equals是用來比較兩個對象的內存地址是否相等。ide

hashCode方法

hashCode方法是本地方法,用於計算出對象的一個散列值,用於判斷在集合中對象是否重複的關鍵。測試

一條定理

equals相同的對象,hashCode必然相同。this

代碼示例

創建一個Student類。

public class Student {

    private String name;
    private int age;
    private String QQ;

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Student student = (Student) o;
        return age == student.age &&
                Objects.equals(name, student.name) &&
                Objects.equals(QQ, student.QQ);
    }
}
複製代碼

在 student 類中,咱們重寫了equals方法。spa

書寫一個測試類

public class Test {
    public static void main(String[] args) {
        Student student = new Student();
        Student student2 = new Student();
        System.out.println(student.equals(student2));    //true
        System.out.println(student.hashCode());            //356573597
        System.out.println(student2.hashCode());           //1735600054 
        HashMap<Student, String> map = new HashMap<>();
        map.put(student,"123");
        map.put(student2,"456");
        System.out.println(map.get(student));
        System.out.println(map.get(student2));

    }
}
複製代碼

輸出

true                               
356573597             student 的hashcode值
1735600054            student 2的hashcode值
123                         
456
複製代碼

此時,咱們發現 equals 相等的對象,hashcode卻不相等,同時在map中用不一樣的對象進行了存儲,map計算出來的hash值不一樣,但equals卻相同。這時候懵了。到底兩個對象同樣不同呢。 因此咱們在重寫equals的時候,必須重寫hashcode。code

從新定義 student 類

public class Student {

    private String name;
    private  int age;
    private  String QQ;

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Student student = (Student) o;
        return age == student.age &&
                Objects.equals(name, student.name) &&
                Objects.equals(QQ, student.QQ);
    }

    @Override
    public int hashCode() {

        return Objects.hash(name, age, QQ);
    }
}
複製代碼

再次測試

public class Test {
    public static void main(String[] args) {
        Student student = new Student();
        Student student2 = new Student();
        System.out.println(student.equals(student2));   //true
        System.out.println(student.hashCode());          // 29791   
        System.out.println(student2.hashCode());       // 29791   
        HashMap<Student, String> map = new HashMap<>();
        map.put(student,"123");
        map.put(student2,"456");
        System.out.println(map.get(student));   //456
        System.out.println(map.get(student2)); //456

    }
}
複製代碼

最後的輸出

true
29791           //相同的對象
29791
456			  //說明以一個值key存儲,相同的值
456
複製代碼

幾條定理

一、兩個對象的equals相等,hashcode必然相等。 二、兩個對象不等,hashcode也可能相等。 三、hashcode相等,對象不必定相等。 四、hashcode不等,對象必定不等。orm

相關文章
相關標籤/搜索