Java備忘錄《“==” 和 “equals”》

Ansong發表於2019-01-03

1)對於==,如果作用於基本資料型別的變數,則直接比較其儲存的 “值”是否相等;

 如果作用於引用型別的變數,則比較的是所指向的物件的地址

2)對於equals方法,注意:equals方法不能作用於基本資料型別的變數

 如果沒有對equals方法進行重寫,則比較的是引用型別的變數所指向的物件的地址;

 諸如String、Date等類對equals方法進行了重寫的話,比較的是所指向的物件的內容。

Object中的equals():

public boolean equals(Object obj) {
        return (this == obj);
}
複製程式碼

String中的equals():

public boolean equals(Object anObject) {
        if (this == anObject) {
            return true;
        }
        if (anObject instanceof String) {
            String anotherString = (String) anObject;
            int n = length();
            if (n == anotherString.length()) {
                int i = 0;
                while (n-- != 0) {
                    if (charAt(i) != anotherString.charAt(i))
                            return false;
                    i++;
                }
                return true;
            }
        }
        return false;
    }
複製程式碼

String中的hashCode():

public int hashCode() {
        int h = hash;
        final int len = length();
        if (h == 0 && len > 0) {
            for (int i = 0; i < len; i++) {
                h = 31 * h + charAt(i);
            }
            hash = h;
        }
        return h;
    }
複製程式碼

相關文章