欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HashMap的put方法源码分析

程序员文章站 2022-05-25 11:46:17
...
/**
     * Implements Map.put and related methods. 实现Map.put和相关方法
     * 
     * @param hash hash for key 计算出的key的hash值
     * @param key the key 
     * @param value the value to put   
     * @param onlyIfAbsent if true, don't change existing value onlyIfAbsend如果为true,则不要更改现有的值
     * @param evict if false, the table is in creation mode.
     * @return previous value, or null if none
     */
    final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
                   boolean evict) {
        //链表数组;链表对象;长度;索引
        Node<K,V>[] tab; Node<K,V> p; int n, i;
        //tab是否为空或者长度是否为0
        if ((tab = table) == null || (n = tab.length) == 0)
            //是:执行resize()方法扩容,数组长度等于扩容后的长度
            n = (tab = resize()).length;
        //获取tab的第i个元素:根据 (n - 1) & hash 算法 ,计算出i找到
        if ((p = tab[i = (n - 1) & hash]) == null)
            //为空:调用newNode() ,赋值给tab第i个;
            tab[i] = newNode(hash, key, value, null);
        else {
            //不为空:两种情况--》1.hash值重复了 2.hash碰撞
            //先定义两个变量
            Node<K,V> e; K k;
            //判断key是否存在(重复)
            if (p.hash == hash &&
                ((k = p.key) == key || (key != null && key.equals(k))))
                //直接覆盖value
                e = p;
            //tab[i]为红黑树
            else if (p instanceof TreeNode)
                //红黑树直接插入键值对
                e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
            //tab[i]为链表
            else {
                //开始遍历链表准备插入
                for (int binCount = 0; ; ++binCount) {
                    //判断当前node是否是最后一个node,如果是,把新添加的node添加进这个链表中
                    if ((e = p.next) == null) {
                        //插入链表
                        p.next = newNode(hash, key, value, null);
                        //判断链表长度是否大于8
                        if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
                            //转换红黑树,插入键值对
                            treeifyBin(tab, hash);
                        break;
                    }
                    //key若存在,则直接覆盖value
                    if (e.hash == hash &&
                        ((k = e.key) == key || (key != null && key.equals(k))))
                        break;
                    p = e;
                }
            }
            //如果e不为空,将e添加到tab中(e.value 被赋值为 putVal()中的参数 value)
            if (e != null) { // existing mapping for key
                V oldValue = e.value;
                if (!onlyIfAbsent || oldValue == null)
                    e.value = value;
                afterNodeAccess(e);
                return oldValue;
            }
        }
        ++modCount;
        //判断当前数量是否超过扩容阈值,如果超过,进行扩容, 与1.7先扩容再添加不同,1.8是先扩容再添加
        if (++size > threshold)
            resize();
        afterNodeInsertion(evict);
        return null;
    }

HashMap的put方法执行过程可以通过下图来理解
HashMap的put方法源码分析

相关标签: java