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_
相關文章
相關標籤/搜索