java.util.HashMap源码初探
对于一个存储类的分析,无非从两点入手:存储用的数据结构,存储的运行机制。数据结构:数组 /** * The table, resized as necessary. Length MUST Always be a power of two. */ transient Entry[] table;Entry链表格式。也即,HashMap中采用