Java中的 AtomicReference updateAndGet() 方法及示例
AtomicReference类的updateAndGet()方法用于原子更新,通过对当前值应用指定的 updateFunction 操作来更新 AtomicReference 的当前值。它以 updateFunction 接口的一个对象作为其参数,并将对象中指定的操作应用于当前值。它返回更新的值。
句法:
public final V
updateAndGet(UnaryOperator updateFunction)
参数:此方法接受updateFunction这是一个无副作用的函数。
返回值:该方法返回更新后的值。
下面的程序说明了 updateAndGet() 方法:
方案一:
// Java program to demonstrate
// AtomicReference.updateAndGet() method
import java.util.concurrent.atomic.*;
import java.util.function.UnaryOperator;
public class GFG {
public static void main(String args[])
{
// AtomicReference with value
AtomicReference ref
= new AtomicReference<>(987654);
// Declaring the updateFunction
// applying function
UnaryOperator function
= (v) -> Integer.parseInt(v.toString()) * 2;
// apply updateAndGet()
int value = ref.updateAndGet(function);
// print AtomicReference
System.out.println(
"The AtomicReference updated value: "
+ value);
}
}
输出:
方案二:
// Java program to demonstrate
// AtomicReference.updateAndGet() method
import java.util.concurrent.atomic.*;
import java.util.function.UnaryOperator;
public class GFG {
public static void main(String args[])
{
// AtomicReference with value
AtomicReference ref
= new AtomicReference<>("welcome");
// Declaring the updateFunction
// applying function to add value as string
UnaryOperator twoDigits
= (v) -> v + " to gfg";
// apply updateAndGet()
String value
= ref.updateAndGet(twoDigits);
// print AtomicReference
System.out.println(
"The AtomicReference current value: "
+ value);
}
}
输出:
参考: 函数 : Java Java )