HashMap源码解读

Posted by Clear Blog on May 18, 2017

HashMap其实也是一个线性的数组实现的。 HashMap内部实现一个静态内部类Entry,Entry的属性有key,value,next.