请您帮助我掌握AtomicInteger类的一些方法的要点:updateAndGet
,accumulateAndGet
。
为什么第一个接收IntUnaryOperator
作为参数?可以在该接口的功能方法中应用什么逻辑?我的想法是,更容易接受普通的int
值。 (与IntBinaryOperator
接口相同)。
提前致谢。
答案 0 :(得分:3)
如果你想将存储在AtomicInteger
中的值原子地加倍,那么在Java 8写入之前你可以做的最好的事情
while (true) {
int x = ai.get();
if (ai.compareAndSet(x, 2 * x)) {
return 2 * x;
}
}
...但是Java 8允许你编写例如。
ai.updateAndGet(x -> 2 * x);
...而accumulateAndGet
会让你将ai
与y
原子地相乘
ai.accumulateAndGet(y, (x, y) -> x * y);
...也可以用updateAndGet
实现,但在某些已经有两个参数操作的情况下可能更容易使用。