在Entry <k,v =“”> class </k,>中使用recordAccess(this)

时间:2013-07-17 15:14:48

标签: java collections hashmap hashtable

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

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

1 个答案:

答案 0 :(得分:4)

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