Java中的 AtomicInteger accumAndGet() 方法及示例
Java.AtomicInteger.accumulateAndGet()方法是一个内置方法,它通过对当前值和作为参数传递的值应用指定的操作来更新对象的当前值。它将一个整数作为其参数和一个 IntBinaryOperator 接口的对象,并将对象中指定的操作应用于值。它返回更新的值。
句法:
public final int accumulateAndGet(int y,
IntBinaryOperator function)
参数:此方法接受一个整数值y和一个 IntBinaryOperator函数作为参数。它将给定函数应用于对象的当前值和值 y。
返回值:函数返回当前对象的更新值。
示例来演示函数。
Java
// Java program to demonstrate
// AtomicInteger accumulateAndGet() method
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.IntBinaryOperator;
public class Demo {
public static void main(String[] args)
{
new UserThread("Thread A");
new UserThread("Thread B");
}
}
class Shared {
static AtomicInteger ai = new AtomicInteger(0);
}
class UserThread implements Runnable {
String name;
UserThread(String name)
{
this.name = name;
new Thread(this).start();
}
IntBinaryOperator ibo = (x, y) -> (x + y);
int value = 5;
@Override
public void run()
{
for (int i = 0; i < 3; i++) {
int ans = Shared.ai
.accumulateAndGet(value, ibo);
System.out.println(name + " " + ans);
}
}
}
输出:
Thread A 5
Thread A 10
Thread A 15
Thread B 20
Thread B 25
Thread B 30
参考: https: Java/util/concurrent/atomic/AtomicInteger.html