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

jdk8 hashMap源码注释

程序员文章站 2022-04-15 18:55:41
源码中调用的其他方法以后更源码注释:final V putVal(int hash, K key, V value, boolean onlyIfAbsent, boolean evict) { Node[] tab; Node p; int n, i; if ((tab = table) == null || (n = tab.length) == 0) // 判断...

源码中调用的其他方法以后更
源码注释:

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)
            // 判断是否需要扩容 resize扩容方法
            n = (tab = resize()).length;
        if ((p = tab[i = (n - 1) & hash]) == null)
            // 当前数组要放入的位置没有元素,直接放里就好
            tab[i] = newNode(hash, key, value, null);
        else {
            // 当前算出来的hash函数位置有元素的时候
            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) {
                    // 判断头结点的next是否有元素 没有直接尾插
                        p.next = newNode(hash, key, value, null);
                        if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
                        // 插入之后判断需不需要转为红黑树 treeifBin()转为红黑树
                            treeifyBin(tab, hash);
                        break;
                    }
                    if (e.hash == hash &&
                        ((k = e.key) == key || (key != null && key.equals(k))))
                        // 头结点的next元素还有,不是链表尾部,继续遍历
                        break;
                    // 找不到链表尾部, 一直找,让他进上边的if中
                    p = e;
                }
            }
            // 上面的两个else都没走,就说明当前链表/红黑树已经存在相同的key了
            if (e != null) { // existing mapping for key
                // 更新key中的value
                V oldValue = e.value;
                if (!onlyIfAbsent || oldValue == null)
                    e.value = value;
                // hashmap没实现,linkedhashmap实现作为lrucache
                afterNodeAccess(e);
                return oldValue;
            }
        }
        // hashmap的修改次数加1
        ++modCount;
        if (++size > threshold)
            // ++size 判断下一次的元素进来需不需要扩容
            resize();
        // 猜的:linkedHashMap把头结点移除
        afterNodeInsertion(evict);
        return null;
    }

本文地址:https://blog.csdn.net/bruce08281/article/details/109643092