1
几个关键的属性
存储数据的数组
transient Entry[] table;
默认容量
static nal int DEFAULT_INITIAL_CAPACITY = 16;
最大容量
static nal int MAXIMUM_CAPACITY = 1 << 30;
默认加载因子,加载因子是一个比例,当 HashMap 的数
据大小 >= 容量 * 加载因子时, HashMap 会将容量扩容
static nal ,oat DEFAULT_LOAD_FACTOR = 0.75f;
当实际数据大小超过 threshold 时, HashMap 会将容量
扩容, threshold =容量 * 加载因子
int threshold;
加载因子
nal ,oat loadFactor;