gpt4 book ai didi

java - java8 中的 concurrentHashMap 中的 sizectl

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:22:31 26 4
gpt4 key购买 nike

因为我正在阅读 java8 中 concurrentHashMap 的源代码,我对 sizeCtl 变量有点困惑,它说

When negative, the table is being initialized or resized: -1 for initialization, else -(1 + the number of active resizing threads)

但在源代码中,它会在尝试调整 ConcurrentHashMap 大小时使用 U.compareAndSetInt(this, SIZECTL, sc, sc + 1) 并使用 U.compareAndSetInt(this, SIZECTL, sc = sizeCtl, sc - 1) 完成运算后。

这些操作让我很困惑,例如,如果有 2 个线程同时调整 map 大小,那么 sizeCtl 就是 -3,但是,当一个new thread try to help resize, sizeCtl 根据上面评论的描述应该是-4,但是好像是-2根据代码 U.compareAndSetInt(this, SIZECTL, sc, sc + 1)

final Node<K,V>[] helpTransfer(Node<K,V>[] tab, Node<K,V> f) {
Node<K,V>[] nextTab; int sc;
if (tab != null && (f instanceof ForwardingNode) &&
(nextTab = ((ForwardingNode<K,V>)f).nextTable) != null) {
int rs = resizeStamp(tab.length);
while (nextTab == nextTable && table == tab &&
(sc = sizeCtl) < 0) {
if ((sc >>> RESIZE_STAMP_SHIFT) != rs || sc == rs + 1 ||
sc == rs + MAX_RESIZERS || transferIndex <= 0)
break;
if (U.compareAndSwapInt(this, SIZECTL, sc, sc + 1)) {
transfer(tab, nextTab);
break;
}
}
return nextTab;
}
return table;
}

最佳答案

我以为它说错了。

When negative, the table is being initialized or resized: -1 for initialization, else -(1 + the number of active resizing threads)

自第一个进入函数的线程transfersizeCtl(resizeStamp(tab.length) << RESIZE_STAMP_SHIFT) + 2 .这是一个负值,它的绝对值非常大。这个sizeCtl在每个线程进入函数时加1,然后在每个线程退出函数前减1。

while (s >= (long)(sc = sizeCtl) && (tab = table) != null &&
(n = tab.length) < MAXIMUM_CAPACITY) {
int rs = resizeStamp(n);
if (sc < 0) {
if ((sc >>> RESIZE_STAMP_SHIFT) != rs || sc == rs + 1 ||
sc == rs + MAX_RESIZERS || (nt = nextTable) == null ||
transferIndex <= 0)
break;
if (U.compareAndSwapInt(this, SIZECTL, sc, sc + 1))
transfer(tab, nt);
}
else if (U.compareAndSwapInt(this, SIZECTL, sc,
(rs << RESIZE_STAMP_SHIFT) + 2))
transfer(tab, null);
s = sumCount();
}

这些是我的想法,但我不确定。

关于java - java8 中的 concurrentHashMap 中的 sizectl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52026232/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com