gpt4 book ai didi

java - ConcurrentBitSet 中的竞争条件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:05:34 25 4
gpt4 key购买 nike

我正在尝试在 java 中创建并发位集,它允许大小扩展(与固定长度相反,使用非常简单)。这里是该类的核心部分(其他方法暂时不重要)

public class ConcurrentBitSet {

static final int CELL = 32;
static final int MASK = CELL - 1;
final AtomicReference<AtomicIntegerArray> aiaRef;

public ConcurrentBitSet(int initialBitSize) {
aiaRef = new AtomicReference<>(new AtomicIntegerArray(1 + ((initialBitSize - 1) / CELL)));
}

public boolean get(int bit) {
int cell = bit / CELL;
if (cell >= aiaRef.get().length()) {
return false;
}
int mask = 1 << (bit & MASK);
return (aiaRef.get().get(cell) & mask) != 0;
}

public void set(int bit) {
int cell = bit / CELL;
int mask = 1 << (bit & MASK);
while (true) {
AtomicIntegerArray old = aiaRef.get();
AtomicIntegerArray v = extend(old, cell);
v.getAndAccumulate(cell, mask, (prev, m) -> prev | m);
if (aiaRef.compareAndSet(old, v)) {
break;
}
}
}

private AtomicIntegerArray extend(AtomicIntegerArray old, int cell) {
AtomicIntegerArray v = old;
if (cell >= v.length()) {
v = new AtomicIntegerArray(cell + 1);
for (int i = 0; i < old.length(); i++) {
v.set(i, old.get(i));
}
}
return v;
}

public String toString() {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < aiaRef.get().length(); i++) {
for (int b = 0; b < CELL; b++) {
sb.append(get(i * CELL + b) ? '1' : '0');
}
}
return sb.toString();
}

}

不幸的是,这里似乎存在竞争条件。

这是示例测试代码,它每次都成功地失败了几个位——它应该打印所有的位直到第 300 位,但是那里几乎没有随机零,每次都在不同的地方。一台 PC 我得到的很少,另一台在行的奇数/偶数位置有 8-10 个零。

    final ConcurrentBitSet cbs = new ConcurrentBitSet(10);
CountDownLatch latch = new CountDownLatch(1);
new Thread() {
public void run() {
try {
latch.await();
for (int i = 0; i < 300; i += 2) {
cbs.set(i);
}
} catch (InterruptedException e) {

}
};
}.start();
new Thread() {
public void run() {
try {
latch.await();
for (int i = 0; i < 300; i += 2) {
cbs.set(i + 1);
}
} catch (InterruptedException e) {
}
};
}.start();
latch.countDown();
Thread.sleep(1000);
System.out.println(cbs.toString());

我得到的例子1111111111111111111111111111111111111111111111111111110111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111110000000000000000000011111111111111111111111111111111111111110111111111111111111111110101111111111111111111110101011111111111111111111111111111111111010101111111111111111111111111111111111101010111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100000000000000000000

很难调试(因为任何复杂的东西都会使竞争条件消失),但看起来像是两个线程同时尝试扩展数组的大小,一个失败并且必须在循环中重试最终在循环的下一部分得到来自 aiaRef.get() 的损坏数据 - 它已经访问过的部分(如果其他线程试图扩展它,也会有)最终在内部有一些零。

有人知道错误在哪里吗?

最佳答案

问题是 aiaRef.compareAndSet() 只是防止并发替换,因为 AtomicReference 的唯一工作是保护其引用的原子性。如果在我们重建数组时引用的对象同时被修改compareAndSet() 将成功,因为它正在将相同的引用与自身进行比较,但它可能遗漏了一些修改.

关于java - ConcurrentBitSet 中的竞争条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38316491/

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