下表分析为JDK1.8的容器类
容器类 | 存储机制 | 线程安全 | |||
存储结构 | 默认容量 | 扩容 | 装载因子与扩容阈值 | ||
ArrayList | 数组 | 10 | 原容量 + 原容量>>1 | 否 | |
Vector | 数组 | 10 | 当指定每次扩容量,则原容量+扩容量 否则默认增加一倍; | 是 | |
LinkedList | 双向链表 | 否 | |||
HashMap | 散列表(数组)+ 单向链表(链表节点数量大于8时,链表会转为红黑树;红黑树的节点不够6个时,红黑树会转为链表) | 1 << 4 = 16 | 当容量超过默认容量且小于设定的最大容量(1 << 30),则扩容1倍; 当容量超过设定的最大容量,不再扩容 | 装载因子: 默认0.75,可指定;
扩容阈值: 1、 扩容阈值 = 容量(当容量超过默认容量且小于设定的最大容量或者容量等于0且原扩容阈值大于0) 2、扩容阈值 = 最大整数(当容量超过设定的最大容量) 3、扩容阈值 = 容量*装载因子 | 否 |
LinkedHashMap | 继承自HashMap; 与HashMap有相同的存储机制; 比HashMap多了一个双向链表存储数据,此链表可以根据访问顺序或插入顺序链接所有数据,默认是插入顺序; | 同HashMap | 同HashMap | 同HashMap | 否 |
TreeMap | 红黑树 | 否 | |||
ConcurrentTreeMap | 散列表(数组)+ 单向链表(链表节点数量大于8时,链表会转为红黑树) | 16 | 是 | ||
Hashtable | 散列表(数组)+ 单向链表 | 11 | 装载因子: 默认0.75,可指定; | 是 | |
HashSet | 借助HashMap或LinkedHashMap存储数据,KEY就是add的对象,value共享同一个Object; | 同HashMap | 同HashMap | 同HashMap | 否 |
LinkedHashSet | 继承自HashSet; 借助LinkedHashMap存储数据,KEY就是add的对象,value共享同一个Object; | 同HashMap | 同HashMap | 同HashMap | 否 |
HashMap是用的最多且机制最为复杂的,下面附HashMap的put方法和resize方法的步骤说明。
putVal是put方法和putAll方法都会调用内部方法
final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
boolean evict) {
Node<K,V>[] tab; Node<K,V> p; int n, i;
/**
* 1、使用延迟初始化策略,第一次PUT的时候初始散列表
*/
if ((tab = table) == null || (n = tab.length) == 0)
n = (tab = resize()).length;
/**
* 2、根据key的hash值,按(n - 1) & hash算法,在始散列表中查找,如果为空,创建单向链表的首节点
*/
if ((p = tab[i = (n - 1) & hash]) == null)
tab[i] = newNode(hash, key, value, null);
else {
Node<K,V> e; K k;
/**
* 3、比较Key是否已经存在
* 首先比较hash值是否相等
* 其次如果hash值相等,再比较Key是否相等
* 如果都相等,则设置对应节点e
*/
if (p.hash == hash &&
((k = p.key) == key || (key != null && key.equals(k))))
e = p;
/**
* 4、经过上面的比较,知道hash值冲突了
* 接下去就是解决冲突,从后面的节点中查找
* 如果节点是红黑树节点,
* 则使用putTreeVal,如果找到key存在的返回对应节点e,如果不存在把value添加到红黑树中
*/
else if (p instanceof TreeNode)
e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
/**
* 5、如果节点不是红黑树节点,
* 则从单向链表的后面节点中找key
* 如果找不到,在链表的最后添加上一个节点
* 如果已在存在,则返回找到的对应节点e
*/
else {
for (int binCount = 0; ; ++binCount) {
/**
* 一直到最后一个节点都没有找到,则在链表的最后添加上一个节点
*/
if ((e = p.next) == null) {
p.next = newNode(hash, key, value, null);
/**
* 当单向链表节点数量超过TREEIFY_THRESHOLD,则把链表转为红黑树
*/
if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
treeifyBin(tab, hash);
break;
}
/**
*同3,比较Key是否已经存在
*/
if (e.hash == hash &&
((k = e.key) == key || (key != null && key.equals(k))))
break;
p = e;
}
}
/**
* 找到key存在的节点e,修改value值
*/
if (e != null) { // existing mapping for key
V oldValue = e.value;
if (!onlyIfAbsent || oldValue == null)
e.value = value;
afterNodeAccess(e);
return oldValue;
}
}
++modCount;
if (++size > threshold)
resize();
afterNodeInsertion(evict);
return null;
}
resize的调整容量的方法
final Node<K,V>[] resize() {
Node<K,V>[] oldTab = table;
int oldCap = (oldTab == null) ? 0 : oldTab.length;
int oldThr = threshold;
int newCap, newThr = 0;
/**
* 旧表(当前(散列)表)容量大于零
*/
if (oldCap > 0) {
/**
* 旧表容量大于等于设定的最大容量
* 设置threshold为最大的整数,
* 表示已经到最大容量,不能再扩容了
*/
if (oldCap >= MAXIMUM_CAPACITY) {
threshold = Integer.MAX_VALUE;
return oldTab;
}
/**
* 如果旧容量的2倍在默认容量和设定的最大容量之间,则扩容为旧容量的2倍
* threshold与新容量相同
* 一般情况下使用都不会超出设定的最大容量,所以大部分情况下,当容量超出默认容量,都以2倍的方式扩容
*/
else if ((newCap = oldCap << 1) < MAXIMUM_CAPACITY &&
oldCap >= DEFAULT_INITIAL_CAPACITY)
newThr = oldThr << 1; // double threshold
}
/**
* 容量设置为初始的threshold
*/
else if (oldThr > 0) // initial capacity was placed in threshold
newCap = oldThr;
/**
* 如果旧表容量和初始threshold都小于0,则新容量设置为默认容量,threshold设置为默认容量*默认装载因子
*/
else { // zero initial threshold signifies using defaults
newCap = DEFAULT_INITIAL_CAPACITY;
newThr = (int)(DEFAULT_LOAD_FACTOR * DEFAULT_INITIAL_CAPACITY);
}
/**
* 经过上面的逻辑得出的新threshold还是为0,
* 则:
* 如果 新容量*装载因子 < 设置的最大容量,取新容量*装载因子
* 否则取最大整数
*/
if (newThr == 0) {
float ft = (float)newCap * loadFactor;
newThr = (newCap < MAXIMUM_CAPACITY && ft < (float)MAXIMUM_CAPACITY ?
(int)ft : Integer.MAX_VALUE);
}
threshold = newThr;
@SuppressWarnings({"rawtypes","unchecked"})
Node<K,V>[] newTab = (Node<K,V>[])new Node[newCap];
table = newTab;
/**
* 把旧表数据移到新表
*/
if (oldTab != null) {
for (int j = 0; j < oldCap; ++j) {
Node<K,V> e;
if ((e = oldTab[j]) != null) {
oldTab[j] = null;
if (e.next == null)
newTab[e.hash & (newCap - 1)] = e;
else if (e instanceof TreeNode)
((TreeNode<K,V>)e).split(this, newTab, j, oldCap);
else { // preserve order
Node<K,V> loHead = null, loTail = null;
Node<K,V> hiHead = null, hiTail = null;
Node<K,V> next;
do {
next = e.next;
if ((e.hash & oldCap) == 0) {
if (loTail == null)
loHead = e;
else
loTail.next = e;
loTail = e;
}
else {
if (hiTail == null)
hiHead = e;
else
hiTail.next = e;
hiTail = e;
}
} while ((e = next) != null);
if (loTail != null) {
loTail.next = null;
newTab[j] = loHead;
}
if (hiTail != null) {
hiTail.next = null;
newTab[j + oldCap] = hiHead;
}
}
}
}
}
return newTab;
}