您好,登錄后才能下訂單哦!
對于基本類型是值比較,對于引用類型來說是引用比較。
/**
* == 的比較
*/
@Test
public void testOne(){
int a = 200;
int b = 200;
Integer c = 200;
Integer d = 200;
//值比較
System.out.println(a == b);//同基本類型同值比較:true
//引用類型比較
System.out.println(c == d);//false
}
equals是原始類Object的方法,即所有對象都有equals方法,默認情況下(即沒有重寫)是引用比較,但是JDK中類很多重寫了equals方法(一般是先進行 == 比較,再判斷是否要進行值比較),所以一般情況下是值比較,注:基本類型不能使用equals比較,而是用 == ,因為基本類型沒有equals方法.
先看看Obeject重寫的equals方法:
//Object:
public boolean equals(Object obj) {
return (this == obj);
}
//Integer :
//先判斷是否為同一類型,不是直接false,是的話在進行值比較
public boolean equals(Object obj) {
if (obj instanceof Integer) {
return value == ((Integer)obj).intValue();
}
return false;
}
//String:
//先比較地址,然后判斷是否為同一類型,不是直接false,是的話在進行值比較
public boolean equals(Object anObject) {
if (this == anObject) {
return true;
}
if (anObject instanceof String) {
String anotherString = (String)anObject;
int n = value.length;
if (n == anotherString.value.length) {
char v1[] = value;
char v2[] = anotherString.value;
int i = 0;
while (n-- != 0) {
if (v1[i] != v2[i])
return false;
i++;
}
return true;
}
}
return false;
}
equals的比較
class Cat{
String name = "cat";
}
class Dog{
String name = "dog";
}
________________________________________________________________________
/**
* euqals 比較
*/
@Test
public void testTwo(){
int a = 200;
int b = 200;
Integer c = 300;
Integer d = 300;
Cat cat = new Cat();
Dog dog = new Dog();
System.out.println(c.equals(a));//false
System.out.println(c.equals(d));//true
//System.out.println(a.equals(cat));//基本類型不能使用equals比較,而是用==,因為基本類型沒有equals方法
}
hashcode()也是Object的方法,是一個本地方法,用C/C++語言實現的,由java去調用返回的對象的地址值。但JDK中很多類都對hashcode()進行了重寫。比如Boolean的表示true則哈希值為1231,表示false則哈希值為1237,
//Object:
public native int hashCode();
//Integer直接返回值
public int hashCode() {
return Integer.hashCode(value);
}
public static int hashCode(int value) {
return value;
}
//String 返回此字符串的哈希碼。
public int hashCode() {
int h = hash;
if (h == 0 && value.length > 0) {
char val[] = value;
for (int i = 0; i < value.length; i++) {
h = 31 * h + val[i];
}
hash = h;
}
return h;
}
hashcode()的簡單使用:
class Cat{
String name = "cat";
}
class Dog{
String name = "dog";
}
---------------------------------------------------------------------
@Test
public void testThree(){
Cat cat = new Cat();
Dog dog = new Dog();
System.out.println(cat.hashCode());//204349222
System.out.println(dog.hashCode());//231685785
Integer a = 200;
Integer b = 300;
System.out.println(a.hashCode());//200
System.out.println(b.hashCode());//300
}
可以嘗試使用聯想法去記住以上概念。比如我們使用的HashMap。其結構如下:
hashcode()相等,那么它們具有 相同的桶的位置,此時就如Entry1和Entry2,但是,Entry1和Entry2的equals并不一定想等,這是再舉個例子Entry1=abc,Entry2=abc,那么它們是相等的,但是Entry1=abc,Entry2=def,那么它們是不相等的.
equals相等,那么說明它們在同一列上,那意味著桶的位置一樣,則.hashCode()肯定相同
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。