1

在查看 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;
    }

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

4

1 回答 1

4

LinkedHashMap 可以有两种顺序:插入顺序或访问顺序。如果使用访问顺序,则此方法确保将访问的条目移动到列表的开头。

于 2013-07-17T15:17:33.903 回答