【JDK原始碼分析】淺談HashMap的原理
在 HashMap 中存放的一系列鍵值對,其中鍵為某個我們自定義的型別。放入 HashMap 後,我們在外部把某一個 key 的屬性進行更改,然後我們再用這個 key 從 HashMap 裡取出元素,這時候 HashMap 會返回什麼? |
我們可以用任何類作為HashMap的key,但是對於這些類應該有什麼限制條件呢?且看下面的程式碼:
public class Person { private String name; public Person(String name) { this.name = name; } } MaptestMap = new HashMap<>(); testMap.put(new Person("hello"), "world"); testMap.get(new Person("hello")); // ---> null
本是想取出具有相等欄位值Person類的value,結果卻是null。對HashMap稍有了解的人看出來——Person類並沒有override hashcode方法,導致其繼承的是Object的hashcode(返回是其記憶體地址),兩次new出來的Person物件並不equals——這也是為什麼在工程專案中常用不變類(如String、Integer等)做為HashMap的key的原因。那麼,HashMap是如何利用hashcode給key做索引的呢?
首先,我們來看《Thinking in Java》中一個簡單HashMap的實現方案:
//: containers/SimpleHashMap.java // A demonstration hashed Map. import java.util.*; import net.mindview.util.*; public class SimpleHashMapextends AbstractMap{ // Choose a prime number for the hash table size, to achieve a uniform distribution: static final int SIZE = 997; // You can't have a physical array of generics, but you can upcast to one: @SuppressWarnings("unchecked") LinkedList<1mapentry>[] buckets = new LinkedList[SIZE]; public V put(K key, V value) { V oldValue = null; int index = Math.abs(key.hashCode()) % SIZE; if(buckets[index] == null) buckets[index] = new LinkedList<1mapentry>(); LinkedList<1mapentry> bucket = buckets[index]; MapEntrypair = new MapEntry(key, value); boolean found = false; ListIterator<1mapentry> it = bucket.listIterator(); while(it.hasNext()) { MapEntryiPair = it.next(); if(iPair.getKey().equals(key)) { oldValue = iPair.getValue(); it.set(pair); // Replace old with new found = true; break; } } if(!found) buckets[index].add(pair); return oldValue; } public V get(Object key) { int index = Math.abs(key.hashCode()) % SIZE; if(buckets[index] == null) return null; for(MapEntryiPair : buckets[index]) if(iPair.getKey().equals(key)) return iPair.getValue(); return null; } public Set<1map.entry> entrySet() { Set<1map.entry> set= new HashSet<1map.entry>(); for(LinkedList<1mapentry> bucket : buckets) { if(bucket == null) continue; for(MapEntrympair : bucket) set.add(mpair); } return set; } public static void main(String[] args) { SimpleHashMapm = new SimpleHashMap(); m.putAll(Countries.capitals(25)); System.out.println(m); System.out.println(m.get("ERITREA")); System.out.println(m.entrySet()); } }
SimpleHashMap構造一個hash表來儲存key,hash函式是取模運算Math.abs(key.hashCode()) % SIZE,採用連結串列法解決hash衝突;buckets的每一個槽位對應存放具有相同(hash後)index值的Map.Entry,如下圖所示:
JDK的HashMap的實現原理與之相類似,其採用鏈地址的hash表table儲存Map.Entry:
/** * The table, resized as necessary. Length MUST Always be a power of two. */ transient Entry[] table = (Entry[]) EMPTY_TABLE; static class Entryimplements Map.Entry{ final K key; V value; Entrynext; int hash; … }
Map.Entry的index是對key的hashcode進行hash後所得。當要get key對應的value時,則對key計算其index,然後在table中取出Map.Entry即可得到,具體參看程式碼:
public V get(Object key) { if (key == null) return getForNullKey(); Entryentry = getEntry(key); return null == entry ? null : entry.getValue(); } final EntrygetEntry(Object key) { if (size == 0) { return null; } int hash = (key == null) ? 0 : hash(key); for (Entrye = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) return e; } return null; }
可見,hashcode直接影響HashMap的hash函式的效率——好的hashcode會極大減少hash衝突,提高查詢效能。同時,這也解釋開篇提出的兩個問題:如果自定義的類做HashMap的key,則hashcode的計算應涵蓋建構函式的所有欄位,否則有可能得到null。
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2679002/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- JDK 1.6 HashMap 原始碼分析JDKHashMap原始碼
- HashMap原始碼分析(JDK 1.8)HashMap原始碼JDK
- jdk原始碼分析之HashMapJDK原始碼HashMap
- 原始碼|jdk原始碼之HashMap分析(一)原始碼JDKHashMap
- 原始碼|jdk原始碼之HashMap分析(二)原始碼JDKHashMap
- JDK1.8 hashMap原始碼分析JDKHashMap原始碼
- HashMap原始碼分析 JDK1.8HashMap原始碼JDK
- HashMap原始碼分析(JDK8)HashMap原始碼JDK
- 死磕 jdk原始碼之HashMap原始碼分析JDK原始碼HashMap
- Jdk1.8下的HashMap原始碼分析JDKHashMap原始碼
- Jdk1.7下的HashMap原始碼分析JDKHashMap原始碼
- JDK1.8原始碼分析之HashMapJDK原始碼HashMap
- jdk1.8原始碼之HashMap分析JDK原始碼HashMap
- JDK1.8原始碼分析筆記-HashMapJDK原始碼筆記HashMap
- 原始碼分析系列1:HashMap原始碼分析(基於JDK1.8)原始碼HashMapJDK
- HashMap 實現原理與原始碼分析HashMap原始碼
- HashMap實現原理及原始碼分析HashMap原始碼
- 【集合框架】JDK1.8原始碼分析之HashMap(一)框架JDK原始碼HashMap
- HashMap JDK1 8原始碼HashMapJDK原始碼
- 從原始碼的角度來談一談HashMap的內部實現原理原始碼HashMap
- 原始碼分析——HashMap原始碼HashMap
- HashMap原始碼分析HashMap原始碼
- HashMap 原始碼分析HashMap原始碼
- 原始碼的魅力 – HashMap 的工作原理原始碼HashMap
- 原始碼的魅力 - HashMap 的工作原理原始碼HashMap
- 淺談IntentService原理分析Intent
- JDK1.7-HashMap原理JDKHashMap
- Java java.util.HashMap實現原理原始碼分析JavaHashMap原始碼
- 原始碼分析之 HashMap原始碼HashMap
- hashmap原始碼面試分析HashMap原始碼面試
- Java:HashMap原始碼分析JavaHashMap原始碼
- 淺談Java中的HashmapJavaHashMap
- HashMap jdk1.7和1.8原始碼剖析HashMapJDK原始碼
- JDK1.8_HashMap原始碼__tableSizeFor方法解析JDKHashMap原始碼
- Java HashMap 原始碼逐行解析(JDK1.8)JavaHashMap原始碼JDK
- HashMap原始碼解析(基於JDK1.7)HashMap原始碼JDK
- HashMap原始碼實現分析HashMap原始碼
- HashMap-put原始碼分析HashMap原始碼