虽然在看看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;
}
更新:我已经更新了第一代码片段。