java8中的HashMap的putVal方法

final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
               boolean evict) {
    Node<K,V>[] tab; Node<K,V> p; int n, i;
    if ((tab = table) == null || (n = tab.length) == 0)
        n = (tab = resize()).length;
    if ((p = tab[i = (n - 1) & hash]) == null)
        tab[i] = newNode(hash, key, value, null);
    else {
        Node<K,V> e; K k;
        if (p.hash == hash &&
            ((k = p.key) == key || (key != null && key.equals(k))))
            e = p;
        else if (p instanceof TreeNode)
            e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
        else {
            for (int binCount = 0; ; ++binCount) {
                if ((e = p.next) == null) {
                    p.next = newNode(hash, key, value, null);
                    if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
                        treeifyBin(tab, hash);
                    break;
                }
                if (e.hash == hash &&
                    ((k = e.key) == key || (key != null && key.equals(k))))
                    break;
                p = e;
            }
        }
        if (e != null) { // existing mapping for key
            V oldValue = e.value;
            if (!onlyIfAbsent || oldValue == null)
                e.value = value;
            afterNodeAccess(e);
            return oldValue;
        }
    }
    ++modCount;
    if (++size > threshold)
        resize();
    afterNodeInsertion(evict);
    return null;
}
  1. 【4】【5】若是原始的節點數組爲空或者節點數目=0,則重置數組大小爲默認值(resize方法)java

  2. 【6】(n-1)&hash查找hash表中的數組索引,保證查找的位置不會大於數組長度,相似於求餘查詢索引數組

  3. 【6】【7】經過計算的索引在數組中位置數據爲null,則在該索引位置建立新的節點數據結構

  4. 【9-35】獲取已存在的節點app

  5. 【9-11】要查詢的節點位於數組或者說鏈表的第一個this

  6. 【13-14】若是是紅黑樹,則調用紅黑樹中的put方法獲取要查詢的節點code

  7. 【16-27】鏈表查詢節點索引

  8. 【19-20】若是某一個鏈表的節點數>=TREEIFY_THRESHOLD-1,則改成紅黑樹存儲hash

總結:io

    hashmap的數據結構爲hash表,具體結構以下:
table

    

    第一行爲數組,經過求hash值與數組的大小的位運算求得索引定位數據;添加數據的時候,檢查每一個桶的數據大小,若是超過8(默認)個,則將鏈表修改成紅黑樹存儲;添加完數據檢查數組大小,若有必要,重置數組大小(resize())

相關文章
相關標籤/搜索