JDK1.8深入HashMap详解

HashMap   常量、变量 //初始Node<K,V>[] 大小为16 static final int DEFAULT_INITIAL_CAPACITY = 1 << 4;   //Node<K,V>[] 最大值为2的30次方 static final int MAXIMUM_CAPACITY = 1 << 30;   //默认加载因子 static final float DEFAULT_
相关文章
相关标签/搜索