我对Java AtomicInteger
有一个小问题。
我知道我可以实现线程安全计数器。但是我找不到关于AtomicInteger
的复杂计算的任何信息。
例如,我有此计算(i和j是对象变量,“ this”):
public void test(int x) {
i = i + ( j * 3 ) + x
}
是否可以仅通过AtomicInteger
使此方法成为线程安全的?
这有效吗?
public void test(int x) {
do {
int tempi = i.get();
int tempj = j.get();
int calc = tempi + ( tempj * 3 ) + x;
} while (i.compareAndSet(tempi, calc));
}
我认为不是因为线程可以在计算时更改j。
为了避免这种情况,我必须控制在计算时是否更改了j。但是我在AtomicInteger
中找不到“只是比较”功能。
伪代码:
public void test(int x) {
do {
int tempi = i.get();
int tempj = j.get();
int calc = tempi + ( tempj * 3 ) + x;
} while (i.compareAndSet(tempi, calc) && j.compare(tempj) /* changed */);
}
有人可以帮我澄清一下吗?
答案 0 :(得分:4)
由于您的计算对多个AtomicXXX
对象(i
,j
)进行操作,因此它们不是线程安全的。 AtomicXXX
语义是通过Compare-and-Swap (CAS)指令实现的,这些指令一次不支持多个占位符。您需要一个外部监视器锁来使其具有线程安全性。