liuyazong.github.io

HashMap

主要看put、get、remove、resize操作,不看红黑树的结点插入、删除、查找等操作。

首先,以注释源码的方式,看看各个功能的实现;然后,以文字上描述的方式,总结各个功能的实现过程。

内部属性

静态属性

    /**
     * 默认初始化容量,值为16,必须是2的n次方
     */
    static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // aka 16
    
    /**
     * 默认加载因子
     */
    static final float DEFAULT_LOAD_FACTOR = 0.75f;  
    
    /**
     * 链表需要转红黑树时的长度。
     * 此时未必会做换红黑树的操作,需要结合MIN_TREEIFY_CAPACITY,即链表长度达到8且容量达到64时,才会做红黑树的转换;
     * 否则,进行扩容操作。
     */
    static final int TREEIFY_THRESHOLD = 8;    
    
    /**
     * 红黑树转链表时的元素个数
     */
    static final int UNTREEIFY_THRESHOLD = 6;


    /**
     * 
     */
    static final int MIN_TREEIFY_CAPACITY = 64;    

实例属性

    /**
     * 内部数组,数组元素可能是链表头节点,也可能是红黑树跟节点
     */
    transient Node<K,V>[] table;

    /**
     * key-value对的数量
     */
    transient int size;
    
    /**
     * 当size大于threshold时,需要进行扩容
     */
    int threshold;

    /**
     * 加载因子
     */
    final float loadFactor;        

结点结构

    /**
     * 链表结点,实现Map.Entry接口
     */
    static class Node<K,V> implements Map.Entry<K,V> {
        final int hash;
        final K key;
        V value;
        Node<K,V> next;
        
        // ... 
    }
    
    /**
     * LinkedHashMap中元素的结点类型
     */
    static class Entry<K,V> extends HashMap.Node<K,V> {
        Entry<K,V> before, after;
        Entry(int hash, K key, V value, Node<K,V> next) {
            super(hash, key, value, next);
        }
    }    
    
    /**
     * 红黑树结点,继承了LinkedHashMap.Entry,间接继承了HashMap.Node,所以也具有链表的性质。
     * 实际上该结点类型既可以作为红黑树结点,又可以作为双向链表结点。
     */
    static final class TreeNode<K,V> extends LinkedHashMap.Entry<K,V> {
        TreeNode<K,V> parent;  // red-black tree links
        TreeNode<K,V> left;
        TreeNode<K,V> right;
        TreeNode<K,V> prev;    // needed to unlink next upon deletion
        boolean red;
        
        // ...
    }    

put操作

    /**
     * 将k-v对放入table中
     */
    public V put(K key, V value) {
        return putVal(hash(key), key, value, false, true);
    }

    /**
     * 将k-v对放入table中
     */
    final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
                   boolean evict) {
        Node<K,V>[] tab; Node<K,V> p; int n, i;
        
        // 如果table数组为null或者table数组长度为0,则调用resize方法初始化table数组,返回数组长度
        if ((tab = table) == null || (n = tab.length) == 0)
            n = (tab = resize()).length;
        
        // 如果table在计算出索引(idx)位置的值为null,则将新的k-v对构建为Node节点放在table数组的这个位置
        // 同时这里为p变量赋值了
        if ((p = tab[i = (n - 1) & hash]) == null)
            tab[i] = newNode(hash, key, value, null);
        
        // 如果table在计算出索引(idx)位置的值不为null
        else {
            Node<K,V> e; K k;
            
            // p的hash与当前k的hash相等,且p的key与当前k的值相等,则视为同一个K,后面会对e处理
            if (p.hash == hash &&
                ((k = p.key) == key || (key != null && key.equals(k))))
                e = p;
            
            // 表示有hash冲突,无论链表还是红黑树都是为了解决hash冲突
            // 如果p的类型是TreeNode,则执行TreeNode节点的插入,即将当前k-v插入到红黑树中    
            else if (p instanceof TreeNode)
                e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
            else {

                // 构造一个Node结点,并将其插入到链表的尾部;并且,在需要的时候,将该链表转换为红黑树
                for (int binCount = 0; ; ++binCount) {

                    // 如果p的next节点(e)为空,则使用当前k-v构建Node并将其作为p的next节点
                    if ((e = p.next) == null) {
                        p.next = newNode(hash, key, value, null);
                        
                        // 当循环到第8次,binCount = 7,条件为真,对table进行扩容或者将当前idx处的链表转换为红黑树具体看treeifyBin方法
                        if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
                            treeifyBin(tab, hash);

                        // 到这里表示k-v是一个全新的节点,并且已经放入table中,循环结束    
                        break;
                    }

                    // 如果p的next节点(e)不为null,且e节点的hash与当前k的hash相等、e节点的key与当前k相等,则视为空一格K,循环结束,后面会对e处理
                    if (e.hash == hash &&
                        ((k = e.key) == key || (key != null && key.equals(k))))
                        break;

                    // 如果前面两个if都不成立,继续查看链表的下一个节点是否满足上面的两个if语句片,直到链表的结尾即p.next值为null    
                    p = e;
                }
            }

            // 条件为真,表示有相同的K进来了,根据onlyIfAbsent和当前已映射的v值是否为空来进行节点value的操作
            if (e != null) { // existing mapping for key
                V oldValue = e.value;
                if (!onlyIfAbsent || oldValue == null)
                    e.value = value;

                // LinkedHashMap有实现,用来维护节点的添加或者访问顺序    
                afterNodeAccess(e);

                // 返回该key关联的旧值
                return oldValue;
            }
        }

        ++modCount;

        // 执行到这里说明在putVal执行之前当前key在table中不存在,size记录的是key的个数
        // 当size > 数组长度*0.75时,对table数组进行扩容
        if (++size > threshold)
            resize();
        
        // LinkedHashMap有实现,用来维护节点的添加或者访问顺序
        afterNodeInsertion(evict);
        return null;
    }

链表转红黑树

    /**
     * 当table太小时,使用扩容操作,而不是使用红黑树替换链表
     */
    final void treeifyBin(Node<K,V>[] tab, int hash) {
        int n, index; Node<K,V> e;
        
        //如果table为null,或者table的长度小于MIN_TREEIFY_CAPACITY(64),进行扩容操作;否则,转为红黑树
        if (tab == null || (n = tab.length) < MIN_TREEIFY_CAPACITY)
            resize();
        else if ((e = tab[index = (n - 1) & hash]) != null) {
            
            // 分别使用每个k-v对构造一个TreeNode结点,进而使用这些TreeNode结点构造了一个双向链表,hd、tl分别是头结点、尾结点
            TreeNode<K,V> hd = null, tl = null;
            do {
                TreeNode<K,V> p = replacementTreeNode(e, null);
                if (tl == null)
                    hd = p;
                else {
                    p.prev = tl;
                    tl.next = p;
                }
                tl = p;
            } while ((e = e.next) != null);
            
            if ((tab[index] = hd) != null)
                
                // 将双向链表构造为红黑树,并将这颗红黑树放入table中对应的下标处
                hd.treeify(tab);
        }
    }


    /**
     * TreeNode中的方法,将之前使用TreeNode构造的双向链表转换为红黑树
     */
    final void treeify(Node<K,V>[] tab) {
        TreeNode<K,V> root = null;
        for (TreeNode<K,V> x = this, next; x != null; x = next) {
            next = (TreeNode<K,V>)x.next;
            x.left = x.right = null;
            if (root == null) {
                x.parent = null;
                x.red = false;
                root = x;
            }
            else {
                K k = x.key;
                int h = x.hash;
                Class<?> kc = null;
                for (TreeNode<K,V> p = root;;) {
                    int dir, ph;
                    K pk = p.key;
                    if ((ph = p.hash) > h)
                        dir = -1;
                    else if (ph < h)
                        dir = 1;
                    else if ((kc == null &&
                              (kc = comparableClassFor(k)) == null) ||
                             (dir = compareComparables(kc, k, pk)) == 0)
                        dir = tieBreakOrder(k, pk);

                    TreeNode<K,V> xp = p;
                    if ((p = (dir <= 0) ? p.left : p.right) == null) {
                        x.parent = xp;
                        if (dir <= 0)
                            xp.left = x;
                        else
                            xp.right = x;
                        root = balanceInsertion(root, x);
                        break;
                    }
                }
            }
        }
        
        // 将构造的红黑树放入table对应的下标出,并将红黑树的跟结点移动到双向链表的头部
        moveRootToFront(tab, root);
    }


    /**
     * TreeNode中的方法,将构造的红黑树放入table对应的下标处,并将红黑树的跟结点移动到双向链表的头部
     */
    static <K,V> void moveRootToFront(Node<K,V>[] tab, TreeNode<K,V> root) {
        int n;
        if (root != null && tab != null && (n = tab.length) > 0) {
            int index = (n - 1) & root.hash;
            TreeNode<K,V> first = (TreeNode<K,V>)tab[index];
            if (root != first) {
                Node<K,V> rn;
                
                // 将构造的红黑树放入table相应的下标处
                tab[index] = root;
                
                // 将红黑树跟结点移动到双向链表的头部
                TreeNode<K,V> rp = root.prev;
                if ((rn = root.next) != null)
                    ((TreeNode<K,V>)rn).prev = rp;
                if (rp != null)
                    rp.next = rn;
                if (first != null)
                    first.prev = root;
                root.next = first;
                root.prev = null;
            }
            assert checkInvariants(root);
        }
    }

resize操作

  1. 如果table未初始化,则对table初始化
  2. 否则,将table数字大小扩展为原来的2倍
  3. 将原table中的元素移动到新table的相应下标处
    /**
     * 对table初始化或者2倍扩容,返回新的table。
     */
    final Node<K,V>[] resize() {
        Node<K,V>[] oldTab = table;
        int oldCap = (oldTab == null) ? 0 : oldTab.length;
        int oldThr = threshold;
        int newCap, newThr = 0;
        if (oldCap > 0) {
            if (oldCap >= MAXIMUM_CAPACITY) {
                threshold = Integer.MAX_VALUE;
                return oldTab;
            }
            
            // 计算扩容后的table数组大小和下次需要扩容时size的临界值
            else if ((newCap = oldCap << 1) < MAXIMUM_CAPACITY &&
                     oldCap >= DEFAULT_INITIAL_CAPACITY)
                newThr = oldThr << 1; // double threshold
        }
        else if (oldThr > 0) // initial capacity was placed in threshold
            newCap = oldThr;
        else {               // zero initial threshold signifies using defaults
            newCap = DEFAULT_INITIAL_CAPACITY;
            newThr = (int)(DEFAULT_LOAD_FACTOR * DEFAULT_INITIAL_CAPACITY);
        }
        if (newThr == 0) {
            float ft = (float)newCap * loadFactor;
            newThr = (newCap < MAXIMUM_CAPACITY && ft < (float)MAXIMUM_CAPACITY ?
                      (int)ft : Integer.MAX_VALUE);
        }
        // 创建新的table数组
        threshold = newThr;
        @SuppressWarnings({"rawtypes","unchecked"})
        Node<K,V>[] newTab = (Node<K,V>[])new Node[newCap];
        table = newTab;
        
        // 移动old table中的结点到新table的相应下标处
        if (oldTab != null) {
            for (int j = 0; j < oldCap; ++j) {
                Node<K,V> e;
                if ((e = oldTab[j]) != null) {
                    oldTab[j] = null;
                    if (e.next == null)// 表示j下标处只有一个结点
                        
                        // 将结点e放入新table的相应下标处
                        newTab[e.hash & (newCap - 1)] = e;
                    else if (e instanceof TreeNode)
                        
                        // 将红黑树分解为两个双向链表,如果双向链表长度大于6,则分解出来的双向链表转换为红黑树。
                        // 然后将双向链表或红黑树放入新table的相应下标处
                        ((TreeNode<K,V>)e).split(this, newTab, j, oldCap);
                    else { // preserve order // 处理链表,将原链表拆分为两个(至少一个)链表,并且维持元素在原链表中的相对顺序
                        Node<K,V> loHead = null, loTail = null;
                        Node<K,V> hiHead = null, hiTail = null;
                        Node<K,V> next;
                        do {
                            next = e.next;
                            if ((e.hash & oldCap) == 0) {
                                if (loTail == null)
                                    loHead = e;
                                else
                                    loTail.next = e;
                                loTail = e;
                            }
                            else {
                                if (hiTail == null)
                                    hiHead = e;
                                else
                                    hiTail.next = e;
                                hiTail = e;
                            }
                        } while ((e = next) != null);
                        
                        // 将新的链表放入新table的相应下标处
                        if (loTail != null) {
                            loTail.next = null;
                            newTab[j] = loHead;
                        }
                        if (hiTail != null) {
                            hiTail.next = null;
                            newTab[j + oldCap] = hiHead;
                        }
                    }
                }
            }
        }
        return newTab;
    }

get操作

返回key关联的value值;如果key不存在,返回null。

  1. 计算key的hash值,根据hash值计算key在table数组中的位置
    • 如果该位置不为null,则比较key和其hash值是否相等
    • 如果相等,则返回该结点
    • 否则
      • 如果结点是红黑树,则从红黑树中查找该key对应的结点
      • 否则,就是从链表中查找该key对应的结点
        • 否则,返回null
  2. 根据1获取结点的value值,或者返回null
    /**
     * 
     */
    public V get(Object key) {
        Node<K,V> e;
        return (e = getNode(hash(key), key)) == null ? null : e.value;
    }

    /**
     * 
     */
    final Node<K,V> getNode(int hash, Object key) {
        Node<K,V>[] tab; Node<K,V> first, e; int n; K k;
        if ((tab = table) != null && (n = tab.length) > 0 &&
            (first = tab[(n - 1) & hash]) != null) {// idx处不为null
            
            // idx处的第一个结点
            if (first.hash == hash && // always check first node
                ((k = first.key) == key || (key != null && key.equals(k))))
                return first;
            if ((e = first.next) != null) { // 下一结点不为空,链表或者红黑树
                if (first instanceof TreeNode)
                    return ((TreeNode<K,V>)first).getTreeNode(hash, key);
                do {
                    if (e.hash == hash &&
                        ((k = e.key) == key || (key != null && key.equals(k))))
                        return e;
                } while ((e = e.next) != null);
            }
        }
        return null;
    }

remove操作

删除key,返回key关联的value;如果key不存在,返回null

  1. 查找key对应的结点
  2. 从链表或者红黑树删除该结点
    /**
     * 
     */
    public V remove(Object key) {
        Node<K,V> e;
        return (e = removeNode(hash(key), key, null, false, true)) == null ?
            null : e.value;
    }

    /**
     * 
     */
    final Node<K,V> removeNode(int hash, Object key, Object value,
                               boolean matchValue, boolean movable) {
        Node<K,V>[] tab; Node<K,V> p; int n, index;
        if ((tab = table) != null && (n = tab.length) > 0 &&
            (p = tab[index = (n - 1) & hash]) != null) {
            
            // 查找key对应的结点
            Node<K,V> node = null, e; K k; V v;
            if (p.hash == hash &&
                ((k = p.key) == key || (key != null && key.equals(k))))// node结点是p,即node结点是链表头结点或红黑树跟结点
                node = p;
            else if ((e = p.next) != null) { // 是红黑树或者链表
                if (p instanceof TreeNode)
                    node = ((TreeNode<K,V>)p).getTreeNode(hash, key);
                else {
                    
                    // 从链表查找key对应的结点,且始终保证p是node的前一个结点
                    do {
                        if (e.hash == hash &&
                            ((k = e.key) == key ||
                             (key != null && key.equals(k)))) {
                            node = e;
                            break;
                        }
                        p = e;
                    } while ((e = e.next) != null);
                }
            }
            
            // 从红黑树中、或者从链表中将结点node删除
            if (node != null && (!matchValue || (v = node.value) == value ||
                                 (value != null && value.equals(v)))) {
                
                // 从红黑树中删除node结点
                if (node instanceof TreeNode)
                    ((TreeNode<K,V>)node).removeTreeNode(this, tab, movable);
                
                // node结点是链表头结点
                else if (node == p)
                    tab[index] = node.next;
                
                // p是node的前一个结点
                else
                    p.next = node.next;
                ++modCount;
                --size;
                afterNodeRemoval(node);
                return node;
            }
        }
        return null;
    }

总结

put操作

该操作将给定的key-value放入table数组中。

该操作涉及四个参数,分别为key、value、key的hash值、table数组的长度n。

  1. 如果table还未初始化,则调用resize方法对table进行初始化,并得到table的长度(默认为16)
  2. 根据key的hash值计算出key在数组中的下标
    • 如果该下标处为null,则构造一个Node结点并将该结点放在该下标处
    • 否则(表示有hash冲突,无论链表还是红黑树都是为了解决hash冲突)
      • 如果该下标处是TreeNode类型的结点,表示该位置是一颗红黑树,进行红黑树的结点插入操作
      • 否则,是链表类型,构造一个Node结点,插入到链表的尾部;并且在需要的时候将链表转换为红黑树
  3. 如果需要扩容,则进行扩容

链表转红黑树

该操作在需要的时候将链表转换为红黑树。

  1. 当table为null、或者其长度小于MIN_TREEIFY_CAPACITY(64)时,并不会做转红黑树的操作,即使链表长度已经达到TREEIFY_THRESHOLD(8),这里只会做一个resize操作
  2. 当table数组长度达到MIN_TREEIFY_CAPACITY(64)并且链表长度达到TREEIFY_THRESHOLD(8)时,才会进行链表转红黑树的过程,具体如下
    1. 使用链表结点的key、value构造TreeNode结点,并使用这些TreeNode结点构造一个双向链表(TreeNode具有双向链表的性质)
    2. 将由TreeNode结点构成的双向链表转换为红黑树(双向链表与红黑树共同存在于同一个结构)
    3. 将红黑树放入table对应的下标处,并将红黑树的root结点移动到双向链表的头结点
    4. 现在,table中该下标位置,即是红黑树、又是双向链表

resize操作

该操作在需要的时候对table进行扩容,并将元素放入新的table对应的位置处。

  1. 如果table未初始化,则对table初始化
  2. 否则,如果还未达到上限,将创建一个长度是原table数组长度2倍的新的数组
  3. 将原table中的元素移动到新table的相应下标处,具体如下(假设在处理原数组下标为j的元素)
    1. 如果j处只有一个元素,则结算该元素在新数组中的位置,并将它放到该位置; 否则
    2. 如果该元素是TreeNode类型
      1. 将该红黑树拆解为两个由TreeNode组成的链表:高位链表(在新数组下标较大的后半部分)、低位链表(在新数组下标较小的前半部分)
      2. 如果链表长度 <= UNTREEIFY_THRESHOLD(6),则将TreeNode类型的链表转换为Node类型的链表,并放入table相应的下标处;否则
      3. 将链表结构转换为红黑树结构,并放入table相应的下标处

      ;否则

    3. 是链表类型,将该链表拆解为两个高位、低位链表,并将这两个链表放入table相应的下标处

get操作

该操作返回key关联的value值;如果key不存在,返回null。

  1. 计算key的hash值,根据hash值计算key在table数组中的位置
    • 如果该位置不为null,则比较key和其hash值是否相等
      • 如果相等,则返回该结点
      • 否则
        • 如果结点是红黑树,则从红黑树中查找该key对应的结点
        • 否则,就是从链表中查找该key对应的结点
    • 否则,返回null
  2. 根据1获取结点的value值,或者返回null

remove操作

该操作删除key,返回key关联的value;如果key不存在,返回null。

  1. 查找key对应的结点
  2. 从链表或者红黑树删除该结点
  3. 返回结点的value值,或者返回null

问题

  1. 什么情况下会进行扩容?
    1. size属性 > 数组容量 * 加载因子时
    2. 为解决hash冲突而形成的链表长度 >= TREEIFY_THRESHOLD(8),但是table数组长度 <= MIN_TREEIFY_CAPACITY(64)时
  2. 什么情况下会进行转红黑树操作?
    1. 为解决hash冲突而形成的链表长度 >= TREEIFY_THRESHOLD(8),并且table数组长度 > MIN_TREEIFY_CAPACITY(64)时
    2. 在扩容时,如果从原红黑树拆解出的新的链表长度 >= TREEIFY_THRESHOLD(8)
  3. 为什么是非线程安全的?

    为了性能。在多线程环境下,请使用ConcurrentHashMap

  4. 如果多线程写HashMap实例,会有什么问题?
    1. 多线程put(不考虑resize) 如果hash冲突,后一个线程覆盖前一个线程的key-value,如在一系列线程中出现hash冲突的键值对个数为N,则最多可能丢失N-1个键值对,即只有一个线程的键值对最终被加入到table内的链表或红黑树中
    2. 多线程resize

      A、B线程执行顺序如下

      A线程

      1. oldTab = table; // 赋值旧数组的引用

      2. Node<K,V>[] newTab = (Node<K,V>[])new Node[newCap]; // 创建扩容后的数组

      3. table = newTab; // 将新数组赋值给旧数组

      4. 将oldTab中的全部元素放入newTab // A线程还未执行到这里

      B线程

      1. oldTab = table; // B线程拿到的table实际上是A线程刚创建的没有任何元素的newTab

      2. Node<K,V>[] newTab = (Node<K,V>[])new Node[newCap]; // 创建扩容后的数组

      3. table = newTab; // 将新数组赋值给旧数组,这里会覆盖掉A线程创建的newTable

      4. 将oldTab中的全部元素放入newTab // B线程先于A线程执行完这一步骤,oldTab中没有任何元素,所以newTab中也不会有任何元素,即table中也不会有任何元素。这样,元素就全部丢失了

      以上是全部丢失的情况,如果在A线程执行步骤4的过程中,B线程开始执行上述逻辑,那么有可能不会丢失全部元素,而是丢失A线程还未放入newTable的部分元素。

    3. 多线程remove