先来看看HashMap的一些成员变量以及他们的含义 /** * The default initial capacity - MUST be a power of two. */ static final int DEFAULT_INITIAL_CAPACITY = 16;//默认Entry数组的长度 /** * The load factor used when none specified in constructor. */ static final float DEFAULT_LOAD_…