码迷,mamicode.com
首页 > 其他好文 > 详细

HashMap(2) 源码剖析(推荐)

时间:2015-04-09 23:34:36      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

 

今天看代码,想到去年发生的HashMap发生的CPU使用率100%的事件,转载下当时看的三个比较不错的博客(非常推荐)

参考:http://coolshell.cn/articles/9606.html

     http://github.thinkingbar.com/hashmap-analysis/

   http://developer.51cto.com/art/201102/246431.htm

 

 

 

在 Java 集合类中,使用最多的容器类恐怕就是 HashMap 和 ArrayList 了,所以打算看一下它们的源码,理解一下设计思想。下面我们从 HashMap 开始说起。首先我们看下源码的版本:

1 java version "1.7.0_45"
2 Java(TM) SE Runtime Environment (build 1.7.0_45-b18)
3 Java HotSpot(TM) 64-Bit Server VM (build 24.45-b08, mixed mode)

接下来直接开始上代码了。

一、HashMap 的实现原理

我们先从整体上把握一下 HashMap 的设计,其实也很简单,就是哈希表的使用,我们直接上图说明会更好。

技术分享

这个图就是 HashMap 的核心,如果把这张图看懂了,其实 HashMap 已经理解了一大半。如果学过数据结构,这玩意就没啥说的了。简单总结一下:

HashMap 使用哈希表作为底层数据结构,而哈希表的实现是结合数组和链表。我们知道数组的优点是分配连续内存,寻址迅速;而链表对于插入删除特别高效,所以综合使用数组和链表,就能进行互补。我们在插入删除的时候,首先根据 key 的 hash 值进行数组定位,每个数组都挂着一个链表,代表相同的 key 的元素,如果 hash 函数设计得当,基本不会出现链表过长的问题,这样就可以做到 O(1)插入、查询,所以极其高效。

二、文档

第二步就是去看下文档,看看能不能捞到有效的信息。这里我直接 copy 一下官方文档吧。

Hash table based implementation of the Map interface(说明实现原理). This implementation provides all of the optional map operations, and permits null values and the null key. (The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls.)(一句话说明 HashMap 和 HashTable 的区别) This class makes no guarantees as to the order of the map(这个在讲到 transfer 的 时候就知道原因了); in particular, it does not guarantee that the order will remain constant over time.

This implementation provides constant-time performance for the basic operations (get and put)(get 和 set 都是常熟复杂度,是哈希表以空间换时间的代价), assuming the hash function disperses the elements properly among the buckets. Iteration over collection views requires time proportional to the "capacity" of the HashMap instance (the number of buckets) plus its size (the number of key-value mappings). Thus, it‘s very important not to set the initial capacity too high (or the load factor too low) if iteration performance is important(遍历操作跟数组长度和链表长度有关,所以在遍历操作要求性能高的情况下,就不要将初始容量设置的过高或者装载因子设置的太低。为什么?看下面这段).

An instance of HashMap has two parameters that affect its performance: initial capacity and load factor. The capacity is the number of buckets in the hash table, and the initial capacity is simply the capacity at the time the hash table is created. The load factor is a measure of how full the hash table is allowed to get before its capacity is automatically increased. When the number of entries in the hash table exceeds the product of the load factor and the current capacity, the hash table is rehashed (that is, internal data structures are rebuilt) so that the hash table has approximately twice the number of buckets(超过装载因子和容量的乘积就要进行 rehash 了,rehash 后容量近似是原来的2倍).

As a general rule, the default load factor (.75) offers a good tradeoff between time and space costs. Higher values decrease the space overhead but increase the lookup cost (reflected in most of the operations of the HashMap class, including get and put). The expected number of entries in the map and its load factor should be taken into account when setting its initial capacity(放入 map 的元素个数和装载因子在初始化的时候要考虑一下,因为 rehash 涉及到 copy 转移,会影响性能), so as to minimize the number of rehash operations. If the initial capacity is greater than the maximum number of entries divided by the load factor, no rehash operations will ever occur.

If many mappings are to be stored in a HashMap instance, creating it with a sufficiently large capacity will allow the mappings to be stored more efficiently than letting it perform automatic rehashing as needed to grow the table. Note that using many keys with the same hashCode() is a sure way to slow down performance of any hash table. To ameliorate impact, when keys are Comparable, this class may use comparison order among keys to help break ties.

Note that this implementation is not synchronized(HashMap 不是线程安全的,这点极其重要。我打算再写篇文章分析一下). If multiple threads access a hash map concurrently, and at least one of the threads modifies the map structurally, it must be synchronized externally. (A structural modification is any operation that adds or deletes one or more mappings; merely changing the value associated with a key that an instance already contains is not a structural modification.) (这里说明了什么情况需要加锁)This is typically accomplished by synchronizing on some object that naturally encapsulates the map. If no such object exists, the map should be "wrapped" using the Collections.synchronizedMap method. This is best done at creation time, to prevent accidental unsynchronized access to the map:

Map m = Collections.synchronizedMap(new HashMap(...));

The iterators returned by all of this class‘s "collection view methods" are fail-fast: if the map is structurally modified at any time after the iterator is created, in any way except through the iterator‘s own remove method, the iterator will throw a ConcurrentModificationException. Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.(讲的是 fail-fast 机制,当迭代过程中哈希表被增或者删,不包括改,就会抛出异常,而不会推迟到程序出问题)

Note that the fail-fast behavior of an iterator cannot be guaranteed as it is, generally speaking, impossible to make any hard guarantees in the presence of unsynchronized concurrent modification. Fail-fast iterators throw ConcurrentModificationException on a best-effort basis. Therefore, it would be wrong to write a program that depended on this exception for its correctness: the fail-fast behavior of iterators should be used only to detect bugs.(程序不应该依赖 fail-fast 机制,使用 fail-fast 的唯一用处就是检测 bug)

This class is a member of the Java Collections Framework.

上面就是 HashMap 的文档,重要的地方我用黑体字注明并进行了简短的说明。下面就从代码开始剖析了。

三、源码剖析

1. 类的声明

首先我们看这个类都继承、实现了哪些东西:

1 public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable

我们可以看到它实现了 Map 接口,继承了 AbstactMap 类。同时也实现了 Cloneable 和序列化接口。我们知道 HashMap 本质就是 Map 接口的实现,为什么又继承了 AbstractMap 呢?因为大部分的 AbstractXX 都是实现了一部分的 XX 接口,只留下一部分重要的方法让我们实现。所以当个人需要实现 Map,但是又不想实现全部方法,就可以去继承 AbstractMap 类了。

2. 类的成员属性

还是直接先上源码:

1 /**
 2      * 默认 HashMap 容量为16。必须是2的幂
 3      */
 4     static final int DEFAULT_INITIAL_CAPACITY = 1 << 4;
 5 
 6     /**
 7      * 最大容量
 8      */
 9     static final int MAXIMUM_CAPACITY = 1 << 30;
10 
11     /**
12      * 默认装载因子,当前元素个数/总容量超过这个值就会进行 rehash
13      */
14     static final float DEFAULT_LOAD_FACTOR = 0.75f;
15 
16     /**
17      * 在 table 没有扩张之前,就用这个初始化
18      */
19     static final Entry<?,?>[] EMPTY_TABLE = {};
20 
21     /**
22      * HashMap 中的关键地方就是这个 table 了。容量必须是2的幂
23      */
24     transient Entry<K,V>[] table = (Entry<K,V>[]) EMPTY_TABLE;
25 
26     /**
27      * 键值对的个数
28      */
29     transient int size;
30 
31     /**
32      达到这个阈值就要进行 rehash 了,默认初始化的阈值是16 * 0.75 = 12
33     int threshold;
34 
35     /**
36      * 实际装载因子,如果没有指定,就使用默认装载因子0.75
37      *
38      * @serial
39      */
40     final float loadFactor;
41 
42     /**
43      * HashMap 结构改变的次数,用于 fail-fast 机制
44      */
45     transient int modCount;
46 
47     /**
48      * 默认的 threshold
49      */
50     static final int ALTERNATIVE_HASHING_THRESHOLD_DEFAULT = Integer.MAX_VALUE;
51 
52     /**
53      * 虚拟机各自实现中,也会有对应的 threshold 设置
54      */
55     private static class Holder {
56 
57         /**
58          * Table capacity above which to switch to use alternative hashing.
59          */
60         static final int ALTERNATIVE_HASHING_THRESHOLD;
61 
62         static {
63             String altThreshold = java.security.AccessController.doPrivileged(
64                 new sun.security.action.GetPropertyAction(
65                     "jdk.map.althashing.threshold")); //读取 Sun 定义的 threshold 的值
66 
67             int threshold;
68             try {
69                 threshold = (null != altThreshold) //修改了threshold 的值
70                         ? Integer.parseInt(altThreshold)
71                         : ALTERNATIVE_HASHING_THRESHOLD_DEFAULT;
72 
73                 // disable alternative hashing if -1
74                 if (threshold == -1) {
75                     threshold = Integer.MAX_VALUE;
76                 }
77 
78                 if (threshold < 0) {
79                     throw new IllegalArgumentException("value must be positive integer.");
80                 }
81             } catch(IllegalArgumentException failed) {
82                 throw new Error("Illegal value for ‘jdk.map.althashing.threshold‘", failed);
83             }
84 
85             ALTERNATIVE_HASHING_THRESHOLD = threshold;
86         }
87     }
88 
89     /**
90      * hash 种子
91      */
92     transient int hashSeed = 0;

  从源码中我们可以看到,HashMap 的关键之处就在于数组和链表,table 是一个 Entry 数组,每一个数组元素保存一个 Entry 节点,而 Entry 节点内部又连接着同样 key 的下一个 Entry 节点,就构成了链表。而如果有了科学的 hashSeed 保证碰撞的几率非常小,就可以近似的认为只有数组,没有链表,那么查找 key 的时候就是 O(1)复杂度了。下面我们来看一下 Entry 的源码:

  

1 //实现了 Map 的 Entry 接口,有没有想到 C++中的 Pair 类型?是的,它就是一个 key-value 的最小单位
 2 static class Entry<K,V> implements Map.Entry<K,V> {
 3         final K key;
 4         V value;
 5         Entry<K,V> next; //链表就靠他了
 6         int hash;
 7 
 8         /**
 9          * Creates new entry.
10          */
11         Entry(int h, K k, V v, Entry<K,V> n) {
12             value = v;
13             next = n;
14             key = k;
15             hash = h;
16         }
17 
18         public final K getKey() {
19             return key;
20         }
21 
22         public final V getValue() {
23             return value;
24         }
25 
26         public final V setValue(V newValue) {
27             V oldValue = value;
28             value = newValue;
29             return oldValue;
30         }
31 
32         public final boolean equals(Object o) {
33             if (!(o instanceof Map.Entry))
34                 return false;
35             Map.Entry e = (Map.Entry)o;
36             Object k1 = getKey();
37             Object k2 = e.getKey();
38             if (k1 == k2 || (k1 != null && k1.equals(k2))) {
39                 Object v1 = getValue();
40                 Object v2 = e.getValue();
41                 if (v1 == v2 || (v1 != null && v1.equals(v2)))
42                     return true;
43             }
44             return false;
45         }
46 
47         public final int hashCode() { //key 和 value 的 hashcode,然后再求异或
48             return Objects.hashCode(getKey()) ^ Objects.hashCode(getValue());
49         }
50 
51         public final String toString() {
52             return getKey() + "=" + getValue();
53         }
54 
55         /**
56          * This method is invoked whenever the value in an entry is
57          * overwritten by an invocation of put(k,v) for a key k that‘s already
58          * in the HashMap.
59          */
60         void recordAccess(HashMap<K,V> m) {
61         }
62 
63         /**
64          * This method is invoked whenever the entry is
65          * removed from the table.
66          */
67         void recordRemoval(HashMap<K,V> m) {
68         }
69     }

  

3. 构造函数

既然看完了 HashMap 的构造,下面我们就来看看如何初始化一个 HashMap,也就是构造函数。一共有4种:

1 //1. 指定初始化容量和装载因子
 2  public HashMap(int initialCapacity, float loadFactor) {
 3         if (initialCapacity < 0)
 4             throw new IllegalArgumentException("Illegal initial capacity: " +
 5                                                initialCapacity);
 6         if (initialCapacity > MAXIMUM_CAPACITY)
 7             initialCapacity = MAXIMUM_CAPACITY;
 8         if (loadFactor <= 0 || Float.isNaN(loadFactor))
 9             throw new IllegalArgumentException("Illegal load factor: " +
10                                                loadFactor);
11 
12         this.loadFactor = loadFactor;
13         threshold = initialCapacity;
14         init(); //init()是一个空方法,在以后版本会添加具体实现
15     }
16 
17     //2. 只指定初始化容量,装载因子使用默认值
18     public HashMap(int initialCapacity) {
19         this(initialCapacity, DEFAULT_LOAD_FACTOR);
20     }
21 
22     //3. 初始化容量和装载因子使用默认值(16和0.75)
23     public HashMap() {
24         this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
25     }
26 
27     //4. 用一个 Map 来初始化,会先判断容量是否需要扩张,然后把元素复制一遍
28     public HashMap(Map<? extends K, ? extends V> m) {
29         this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1,
30                       DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR);
31         inflateTable(threshold);
32 
33         putAllForCreate(m);
34     }

  上面就是4种构造方法,一般情况下用的最多的是第一种和第四种。第一种没什么说的,我们先看下第四种的扩张函数inflateTable(threshold):

1 /**
 2     * 1. 找到最小的大于等于容量的2的倍数
 3     * 2. 确定 threshold,容量*装载因子,如果大于最大容量1<<30,就选择+1作为阈值
 4     * 3. 初始化底层的 table 索引数组
 5     * 4. 选择最合适的 hash 种子,使碰撞的几率最低
 6     */
 7  private void inflateTable(int toSize) {
 8         // Find a power of 2 >= toSize
 9         int capacity = roundUpToPowerOf2(toSize);
10 
11         threshold = (int) Math.min(capacity * loadFactor, MAXIMUM_CAPACITY + 1);
12         table = new Entry[capacity];
13         initHashSeedAsNeeded(capacity); 
14     }

  

4. put()方法——核心之一

在使用 HashMap 时,最常用的肯定就是 get/set 操作了。当然,要先说 put,因为选择如何放入,才能决定 get 怎样进行。下面是 put()方法的源码:

1 /**
 2      * 1. 初始化的时候 table 是一个空数组,于是要根据 threshold 进行初始化。结合上面的`inflateTable()`源码,
 3      *    我们知道默认情况下容量是16(threshold 是12)
 4      * 2. key 为 null 的时候,也可以进行 put 操作。而 HashTable 是不能处理 key/value 为 null 的情况
 5      * 3. 计算 hash 值
 6      * 4. i 就是在 table 中找到对应的位置,本质就是 HashMap 的索引了
 7      * 5. 在链表中插入元素
 8      */
 9  public V put(K key, V value) {
10         if (table == EMPTY_TABLE) {
11             inflateTable(threshold);
12         }
13         if (key == null)
14             return putForNullKey(value);
15         int hash = hash(key);
16         int i = indexFor(hash, table.length);
17 
18         //如果已经有了这个 key,就进行更新操作。返回旧 value
19         for (Entry<K,V> e = table[i]; e != null; e = e.next) {
20             Object k;
21             if (e.hash == hash && ((k = e.key) == key || key.equals(k))) {
22                 V oldValue = e.value;
23                 e.value = value;
24                 e.recordAccess(this);
25                 return oldValue;
26             }
27         }
28 
29         //如果不存在这个 key,就改变了结构。添加一个 Entry
30         modCount++;
31         addEntry(hash, key, value, i);
32         return null;
33     }

  

可以看到,put()的返回值是 V,就是当key 存在的时候,put 会返回 oldValue。而 put()涉及到的函数主要有:

  • putForNullKey()
  • hash()
  • indexFor()
  • addEntry()

下面我们先看一下 putForNullKey() 函数的源码,很简单的。因为 null 也可以作为 key 的。一个特别的地方在于 null 的 key 是占据 table 的第一个位置。所以直接在 table[0]的链表中进行操作。

1 private V putForNullKey(V value) {
 2         for (Entry<K,V> e = table[0]; e != null; e = e.next) {
 3             if (e.key == null) {
 4                 V oldValue = e.value;
 5                 e.value = value;
 6                 e.recordAccess(this);
 7                 return oldValue;
 8             }
 9         }
10         modCount++;
11         addEntry(0, null, value, 0);
12         return null;
13     }

  然后是 hash()的源码,首先 h 是 hash 种子,根据这个值得到 key 在 table 中的索引位置(hash 种子要尽可能保证不出现碰撞)。其中涉及到了 unsigned right shift 技巧,可以参考我前面写过的文章:Java右移操作

1 final int hash(Object k) {
 2         int h = hashSeed;
 3         if (0 != h && k instanceof String) {
 4             return sun.misc.Hashing.stringHash32((String) k);
 5         }
 6 
 7         h ^= k.hashCode();
 8 
 9         // This function ensures that hashCodes that differ only by
10         // constant multiples at each bit position have a bounded
11         // number of collisions (approximately 8 at default load factor).
12         //下面这种方法能使得链表的长度上界为8,那么get()操作都在9次以下
13         h ^= (h >>> 20) ^ (h >>> 12);
14         return h ^ (h >>> 7) ^ (h >>> 4);
15     }

  

PS:

经评论网友指正,上面说法有误。不是使得链表的长度上界为8,get()在9次以下。作用详见 stackoverflow 的讨论:Understanding strange Java hash function)

然后接着看indexFor()函数的源码:

1 static int indexFor(int h, int length) {
2         //一句话,length 是数组最大值+1,不多解释了。真个函数功能就是寻找在 table 中的位置
3         return h & (length-1);
4     }

  最后一个是addEntry(),从名字就可以看出来。就是往 Entry 数组中添加一个 key-value 元素呗:

1 //当元素个数达到阈值或者有冲突,就 resize 扩容 了。
 2     void addEntry(int hash, K key, V value, int bucketIndex) {
 3         if ((size >= threshold) && (null != table[bucketIndex])) {
 4             resize(2 * table.length);
 5             hash = (null != key) ? hash(key) : 0;
 6             bucketIndex = indexFor(hash, table.length);
 7         }
 8         
 9         //实际添加元素,源码在下面
10         createEntry(hash, key, value, bucketIndex);
11     }
12 
13     void createEntry(int hash, K key, V value, int bucketIndex) {
14         Entry<K,V> e = table[bucketIndex];
15         //结合 Entry 的源码,会发现是在链表头部添加新元素
16         table[bucketIndex] = new Entry<>(hash, key, value, e);
17         size++;
18     }

  resize()函数是一个非常关键的函数,因为它会引起底层数据结构的大洗牌。所以,我们要单独分析一下:

1 void resize(int newCapacity) {
 2         Entry[] oldTable = table;
 3         int oldCapacity = oldTable.length;
 4 
 5         //如果已达最大容量,就直接返回。不再扩容。MAX 是1<<30,阈值设为最大值
 6         if (oldCapacity == MAXIMUM_CAPACITY) {
 7             threshold = Integer.MAX_VALUE;
 8             return;
 9         }
10 
11         Entry[] newTable = new Entry[newCapacity];
12         transfer(newTable, initHashSeedAsNeeded(newCapacity));
13         table = newTable;
14         threshold = (int)Math.min(newCapacity * loadFactor, MAXIMUM_CAPACITY + 1);
15     }

  

首先是声明了一个 temp Entry 数组 oldTable,这样新旧引用都指向了相同的数组内存地址。但是为什么要多此一举呢?后面代码用到 oldTable 的地方仅仅求了一下长度,没做任何其他操作,完全可以用 table 来计算呀。这点很是奇怪,而且很多地方都是先声明一个新引用,对新引用进行操作,而不是在原因用上进行。有机会搞清楚这个设计的原因。

下面就是整个函数的流程:

  1. 首先申请了一个新数组 newTable
  2. 对新数组进行 transfer 操作
  3. 将 table 指向扩容后的新数组

重点肯定是第2步了,上代码:

 1 //
 2     void transfer(Entry[] newTable, boolean rehash) {
 3         int newCapacity = newTable.length;
 4         for (Entry<K,V> e : table) {
 5             while(null != e) {
 6                 Entry<K,V> next = e.next;
 7                 if (rehash) {
 8                     e.hash = null == e.key ? 0 : hash(e.key);
 9                 }
10                 int i = indexFor(e.hash, newCapacity);
11 
12                 //这里是文档里说不能保持元素顺序的原因。因为 transfer 过程将元素逆序插入到
13                 //newTable 中
14                 e.next = newTable[i];
15                 newTable[i] = e;
16                 e = next;
17             }
18         }
19     }

  其实到这里,put()就已经讲完了,但是有一个比较putAll()有时候会用到,我们也来看一下:

1 public void putAll(Map< ? extends K, ? extends V> m) {
 2         int numKeysToBeAdded = m.size();
 3         if (numKeysToBeAdded == 0)
 4             return;
 5 
 6         if (table == EMPTY_TABLE) {
 7             inflateTable((int) Math.max(numKeysToBeAdded * loadFactor, threshold));
 8         }
 9 
10         /*
11          * Expand the map if the map if the number of mappings to be added
12          * is greater than or equal to threshold.  This is conservative; the
13          * obvious condition is (m.size() + size) >= threshold, but this
14          * condition could result in a map with twice the appropriate capacity,
15          * if the keys to be added overlap with the keys already in this map.
16          * By using the conservative calculation, we subject ourself
17          * to at most one extra resize.
18          * 
19          * 上面解释的非常清楚了,采取了保守扩容。因为存在 key 相同的情况只需要覆盖,不需要重新申请新空间
20          */
21         if (numKeysToBeAdded > threshold) {
22             int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1);
23             if (targetCapacity > MAXIMUM_CAPACITY)
24                 targetCapacity = MAXIMUM_CAPACITY;
25             int newCapacity = table.length;
26             while (newCapacity < targetCapacity)
27                 newCapacity <<= 1;
28             if (newCapacity > table.length)
29                 resize(newCapacity);
30         }
31 
32         for (Map.Entry<? extends K, ? extends V> e : m.entrySet())
33             put(e.getKey(), e.getValue());
34     }

  

5. get()方法——核心之二

下面是二个核心——get()方法,我们来看一下源码:

1 //简单的不行吧?因为put()已经搞定了所有事情,我只需要判断 key 是不是 null 即可
 2  //如果是 null 就 getForNullKey();否则就是 getEntry()。具体过程就是先在数组找,
 3  //然后再在链表找就 ok 了
 4     public V get(Object key) {
 5         if (key == null)
 6             return getForNullKey();
 7         Entry<K,V> entry = getEntry(key);
 8 
 9         return null == entry ? null : entry.getValue();
10     }

  其中有两个附加的 containsKey() 和 containsValue()函数,要注意它们的复杂度:

1 public boolean containsKey(Object key) {
 2         return getEntry(key) != null;
 3     }
 4 
 5     /**
 6      * Returns the entry associated with the specified key in the
 7      * HashMap.  Returns null if the HashMap contains no mapping
 8      * for the key.
 9      */
10     final Entry<K,V> getEntry(Object key) {
11         if (size == 0) {
12             return null;
13         }
14 
15         //这个是 O(链表长度K,一般 <= 8)
16         int hash = (key == null) ? 0 : hash(key);
17         for (Entry<K,V> e = table[indexFor(hash, table.length)];
18              e != null;
19              e = e.next) {
20             Object k;
21             if (e.hash == hash &&
22                 ((k = e.key) == key || (key != null && key.equals(k))))
23                 return e;
24         }
25         return null;
26     }
27 
28     //这个可是 O(N*N)的,谨慎使用!!!
29     public boolean containsValue(Object value) {
30         if (value == null)
31             return containsNullValue();
32 
33         Entry[] tab = table;
34         for (int i = 0; i < tab.length ; i++)
35             for (Entry e = tab[i] ; e != null ; e = e.next)
36                 if (value.equals(e.value))
37                     return true;
38         return false;
39     }

  

6. 删除元素

对于删除,很简单。就是先 get 到 index,然后从链表中删除这个节点即可。源码如下:

 

1 public V remove(Object key) {
 2         Entry<K,V> e = removeEntryForKey(key);
 3         return (e == null ? null : e.value);
 4     }
 5 
 6     /**
 7      * Removes and returns the entry associated with the specified key
 8      * in the HashMap.  Returns null if the HashMap contains no mapping
 9      * for this key.
10      */
11     final Entry<K,V> removeEntryForKey(Object key) {
12         if (size == 0) {
13             return null;
14         }
15         int hash = (key == null) ? 0 : hash(key);
16         int i = indexFor(hash, table.length);
17         Entry<K,V> prev = table[i];
18         Entry<K,V> e = prev;
19 
20         //找到那个节点,如果要删除的是第一个节点,就需要把 table[i] 指向第二个元素;否则直接删除
21         while (e != null) {
22             Entry<K,V> next = e.next;
23             Object k;
24             if (e.hash == hash &&
25                 ((k = e.key) == key || (key != null && key.equals(k)))) {
26                 modCount++;
27                 size--;
28                 if (prev == e)
29                     table[i] = next;
30                 else
31                     prev.next = next;
32                 e.recordRemoval(this);
33                 return e;
34             }
35             prev = e;
36             e = next;
37         }
38 
39         return e;
40     }

  如果想删除整个 HashMap,就可以使用clear()函数,源码很简单,就是调用 Arrays 的 fill()方法:

1 public void clear() {
 2         modCount++;
 3         Arrays.fill(table, null);
 4         size = 0;
 5     }
 6 
 7     //这个是 Arrays 类的静态方法
 8     public static void fill(Object[] a, Object val) {
 9         for (int i = 0, len = a.length; i < len; i++)
10             a[i] = val;
11     }

  

7. 迭代器

下面是 HashMap 内部实现的迭代器,在看《Thinking In Java》第十章内部类的时候,就提到过了容器的迭代类都是内部类,外部定义了一个迭代器的接口。每个容器在内部实现这个接口,那么使用容器的时候就有了统一的接口。HashMap 一共实现了下列几个迭代器:

  • HashIterator(仅仅为迭代器模板,使用抽象类实现)
  • ValueIterator
  • KeyIterator
  • EntryIterator

下面就是它们的源码:

1 /**
 2     * 我们会 HashMap 将迭代器进行了抽象,之后定义了 HashIterator 迭代器,
 3     * 但是注意它是一个抽象类。(实现 Iterator 接口需要实现 hashNext(),next(),remove()方法)
 4     * 而 HashIterator 是一个抽象类,没有实现 next(),而是由实际工作的迭代器完成
 5     * 
 6     * HashIterator 里面有一个 expectedModCount 字段,保证了 fail-fast 机制
 7     */
 8     private abstract class HashIterator<E> implements Iterator<E> {
 9         Entry<K,V> next;        // next entry to return
10         int expectedModCount;   // For fast-fail
11         int index;              // current slot
12         Entry<K,V> current;     // current entry
13 
14         HashIterator() {
15             expectedModCount = modCount;
16             if (size > 0) { // advance to first entry
17                 Entry[] t = table;
18                 while (index < t.length && (next = t[index++]) == null)
19                     ;
20             }
21         }
22 
23         public final boolean hasNext() {
24             return next != null;
25         }
26 
27         final Entry<K,V> nextEntry() {
28             if (modCount != expectedModCount)
29                 throw new ConcurrentModificationException();
30             Entry<K,V> e = next;
31             if (e == null)
32                 throw new NoSuchElementException();
33 
34             if ((next = e.next) == null) {
35                 Entry[] t = table;
36                 while (index < t.length && (next = t[index++]) == null)
37                     ;
38             }
39             current = e;
40             return e;
41         }
42 
43         public void remove() {
44             if (current == null)
45                 throw new IllegalStateException();
46             if (modCount != expectedModCount)
47                 throw new ConcurrentModificationException();
48             Object k = current.key;
49             current = null;
50             HashMap.this.removeEntryForKey(k);
51             expectedModCount = modCount;
52         }
53     }
54 
55     private final class ValueIterator extends HashIterator<V> {
56         public V next() {
57             return nextEntry().value;
58         }
59     }
60 
61     private final class KeyIterator extends HashIterator<K> {
62         public K next() {
63             return nextEntry().getKey();
64         }
65     }
66 
67     private final class EntryIterator extends HashIterator<Map.Entry<K,V>> {
68         public Map.Entry<K,V> next() {
69             return nextEntry();
70         }
71     }
72 
73     // Subclass overrides these to alter behavior of views‘ iterator() method
74     Iterator<K> newKeyIterator()   {
75         return new KeyIterator();
76     }
77     Iterator<V> newValueIterator()   {
78         return new ValueIterator();
79     }
80     Iterator<Map.Entry<K,V>> newEntryIterator()   {
81         return new EntryIterator();
82     }

  感觉 HashMap 设计的迭代器很巧妙,如果是我,应该是单独实现3种。但 HashMap 却抽象了迭代器模型,将 next()的实现统一成 nextEntry(),之后实际迭代器只需要调用这个函数就可以返回正确的值。

HashMap(2) 源码剖析(推荐)

标签:

原文地址:http://www.cnblogs.com/stsjiayou/p/4412908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!