JDK1.7的HashMap源碼分析

HashMap介紹  jdk1.7的HashMap是基於數組+鏈表  jdk1.8的HashMap是基於數組+鏈表+紅黑樹 1.7HashMap存儲結構 static final Entry<?,?>[] EMPTY_TABLE = {}; // HashMap底層使用Entry數組做爲存儲, 默認爲: {} transient Entry<K,V>[] table = (Entry<K,V>[
相關文章
相關標籤/搜索