Java图解Hashmap扩容原理与多线程扩容成环原因
Posted boluo1230
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java图解Hashmap扩容原理与多线程扩容成环原因相关的知识,希望对你有一定的参考价值。
- 此处我们先看一下jdk7中HashMap扩容源码?
void transfer(Entry[] newTable, boolean rehash) {
int newCapacity = newTable.length;
for (Entry<K,V> e : table) {
while(null != e) {
Entry<K,V> next = e.next;
if (rehash) { //jdk8中无此判断
e.hash = null == e.key ? 0 : hash(e.key);
}
int i = indexFor(e.hash, newCapacity);
e.next = newTable[i];
newTable[i] = e;
e = next;
}
}
}
- 代码可能比较抽象,不墨迹,直接撸图:
- 我们此时有两个线程时:
以上是关于Java图解Hashmap扩容原理与多线程扩容成环原因的主要内容,如果未能解决你的问题,请参考以下文章