對於基本類型是值比較,對於引用類型來講是引用比較。java
/**
* == 的比較
*/
@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方法.bash
先看看Obeject重寫的equals方法:ui
//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的比較this
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,spa
//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()的簡單使用:code
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。其結構以下:cdn
hashcode()相等,那麼它們具備 相同的桶的位置,此時就如Entry1和Entry2,可是,Entry1和Entry2的equals並不必定想等,這是再舉個例子Entry1=abc,Entry2=abc,那麼它們是相等的,可是Entry1=abc,Entry2=def,那麼它們是不相等的. equals相等,那麼說明它們在同一列上,那意味着桶的位置同樣,則.hashCode()確定相同對象