环境:jdk1.8问题:学习HashMap的时候发现在putVal方法的最后调用了afterNodeInsertion方法
...
++modCount;
if (++size > threshold)
resize();
afterNodeInsertion(evict);
return null;
又去搜索一下afterNodeInsertion方法,发现不少地方都调用了它,但是它的实现却是
void afterNodeInsertion(boolean evict) { }
一个空方法??想知道这个方法到底有什么作用呢?
添加回答
举报
0/150
提交
取消