hashMap的hashCode() 和equal()的使用

hashMap的hashCode() 和equa()的使用
 
在java的集合中,判斷兩個對象是否相等的規則是:
1,判斷兩個對象的hashCode是否相等
    若是不相等,認爲兩個對象也不相等,完畢
    若是相等,轉入2
2,判斷兩個對象用equals運算是否相等
    若是不相等,認爲兩個對象也不相等
    若是相等,認爲兩個對象相等 

複製代碼
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;

import android.app.Activity;
import android.os.Bundle;


public class TestCollectionActivity extends Activity {
    /** Called when the activity is first created. */

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
  
        
        Set<Person> hashSet = new HashSet<Person>();
        hashSet.add(new Person("張先生", 12121212));
        hashSet.add(new Person("張太太", 12121213));
        hashSet.add(new Person("張先生", 12121210));
        hashSet.add(new Person("網先生", 12121210));
        hashSet.add(new Person("網先生", 12121210));
        hashSet.add(new Person("張先生", 12121210));
        /** 最後結果輸出爲:
         *       張先生 12121212
            張太太 12121213
            網先生 12121210
            張先生 12121210
            
            若是不添加hashCode()和equals(),全部person成員都將正常輸出
            添加hashCode和equals以後,若a.hashCode() = b.hashCode且equals返回爲true,此時原先的成員將被替代,
            致使了上面的結果輸出
        */
        
        Iterator<Person> it = hashSet.iterator();
        while(it.hasNext()) {
            Person person = it.next();
            System.out.println(person.getName() + " " + person.getId_card());
        }
        
    }
    
    public class Person {
        private String name;
        private long id_card;
        public Person(String name, long id_card) {
            this.name = name;
            this.id_card = id_card;
        }
        
        public long getId_card(){
            return id_card;
        }
        
        public String getName() {
            return name;
        }
        
        public int hashCode() {
            int result = 1;
            result = (int)(id_card ^(id_card>>32));
            return result;
//            final int PRIME = 31;
//            int result = 1;
//            result = PRIME * result + (int)(id_card ^ (id_card >>32));//long型數據取(int)位
//            result = PRIME * result + ((name == null) ? 0 : name.hashCode());
//            return result;
        }
        
        public boolean equals(Object obj) {
            if (this == obj)
                return true;
            if (obj == null)
                return false;
            if (getClass() != obj.getClass())
                return false;
            final Person other = (Person) obj;
            if (id_card != other.id_card)
                return false;
            if (name == null) {
                if (other.name != null)
                    return false;
            } else if (!name.equals(other.name))
                return false;
            return true;
        }
    }
}
複製代碼



hashCode()和equal()由輸出狀況可得知:添加hashCode()和equals()以後,若a.hashCode() = b.hashCode且equals返回爲true,此時原先的成員將被替代,致使了上面的結果輸出。

   hashCode用於快速判斷兩個對象是否相等,若是相等,則根據equal的返回值肯定是否覆蓋,equal()返回true則覆蓋。

 

下面是補充:

=====================================
1、 爲何要重載equal方法?
答案:由於Object的equal方法默認是兩個對象的引用的比較,意思就是指向同一內存,地址則相等,不然不相等;若是你如今須要利用對象裏面的值來判斷是否相等,則重載equal方法。
2、 爲何重載hashCode方法?
答案:通常的地方不須要重載hashCode,只有當類須要放在HashTable、HashMap、HashSet等等hash結構的集合時纔會重載hashCode,那麼爲何要重載hashCode呢?就HashMap來講,比如HashMap就是一個大內存塊,裏面有不少小內存塊,小內存塊裏面是一系列的對象,能夠利用hashCode來查找小內存塊hashCode%size(小內存塊數量),因此當equal相等時,hashCode必須相等,並且若是是object對象,必須重載hashCode和equal方法。
3、 爲何equals()相等,hashCode就必定要相等,而hashCode相等,卻不要求equals相等?
答案:1、由於是按照hashCode來訪問小內存塊,因此hashCode必須相等。
            2、HashMap獲取一個對象是比較key的hashCode相等和equal爲true。
之因此hashCode相等,卻能夠equal不等,就好比ObjectA和ObjectB他們都有屬性name,那麼hashCode都以name計算,因此hashCode同樣,可是兩個對象屬於不一樣類型,因此equal爲false。
4、 爲何須要hashCode?
1、 經過hashCode能夠很快的查到小內存塊。
2、 經過hashCode比較比equal方法快,當get時先比較hashCode,若是hashCode不一樣,直接返回false。

 

微信公衆號【黃小斜】大廠程序員,互聯網行業新知,終身學習踐行者。關注後回覆「Java」、「Python」、「C++」、「大數據」、「機器學習」、「算法」、「AI」、「Android」、「前端」、「iOS」、「考研」、「BAT」、「校招」、「筆試」、「面試」、「面經」、「計算機基礎」、「LeetCode」 等關鍵字能夠獲取對應的免費學習資料。 前端

 

 

                     

相關文章
相關標籤/搜索