环境:jdk1.8
问题:学习HashMap的时候发现在putVal方法的最后调用了afterNodeInsertion方法
...
++modCount;
if (++size > threshold)
resize();
afterNodeInsertion(evict);
return null;
又去搜索一下afterNodeInsertion方法,发现不少地方都调用了它,但是它的实现却是
void afterNodeInsertion(boolean evict) { }
一个空方法??想知道这个方法到底有什么作用呢?
源码中其实已经说了,这个三个方法都是为了继承
HashMap
的LinkedHashMap
类服务的。LinkedHashMap
中被覆盖的afterNodeInsertion
方法,用来回调移除最早放入Map的对象