recordAccess(本)在条目的应用 类(Use of recordAccess(thi

2019-09-29 13:19发布

虽然在看看HashMap类里面,我遇到了这个方法: -

    /**
     * This method is invoked whenever the value in an entry is
     * overwritten by an invocation of put(k,v) for a key k that's already
     * in the HashMap.
     */
    void recordAccess(HashMap<K,V> m) {
    }

实际上,该方法是在内部类的内部定义Entry<K, V>

我不能做的是评论。 这是什么方法呢?

PS:我还可以看到这个方法被调用内部的HashMap中的putForNullKey()方法

 private V putForNullKey(V value) {
        for (Entry<K,V> e = table[0]; e != null; e = e.next) {
            if (e.key == null) {
                V oldValue = e.value;
                e.value = value;
                e.recordAccess(this); // call
                return oldValue;
            }
        }
        modCount++;
        addEntry(0, null, value, 0);
        return null;
    }

更新:我已经更新了第一代码片段。

Answer 1:

LinkedHashMap中可以有两个命令:插入顺序,或访问顺序。 如果使用访问顺序,这个方法可以确保访问的条目被移动到列表的开头。



文章来源: Use of recordAccess(this) in Entry class