AtomicReference类的updateAndGet()方法用于原子更新,该更新通过对当前值应用指定的updateFunction操作来更新AtomicReference的当前值。它以updateFunction接口的对象为参数,并将该对象中指定的操作应用于当前值。它返回更新的值。
用法:
public final V updateAndGet(UnaryOperator<V> updateFunction)
参数:此方法接受updateFunction,它是没有副作用的函数。
返回值:此方法返回更新的值。
以下示例程序旨在说明updateAndGet()方法:
程序1:
// 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<Integer> 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);
}
}
输出:
程序2:
// 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<String> 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 AtomicInteger updateAndGet()用法及代码示例
- Java AtomicReferenceArray updateAndGet()用法及代码示例
- Java AtomicLongArray updateAndGet()用法及代码示例
- Java AtomicIntegerArray updateAndGet()用法及代码示例
- Java AtomicLong updateAndGet()用法及代码示例
- Java AtomicReference get()用法及代码示例
- Java AtomicReference set()用法及代码示例
- Java AtomicReference compareAndSet()用法及代码示例
- Java AtomicReference weakCompareAndSet()用法及代码示例
- Java AtomicReference compareAndExchangeAcquire()用法及代码示例
- Java AtomicReference compareAndExchangeRelease()用法及代码示例
- Java AtomicReference getAcquire()用法及代码示例
- Java AtomicReference setOpaque()用法及代码示例
- Java AtomicReference setPlain()用法及代码示例
- Java AtomicReference setRelease()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 AtomicReference updateAndGet() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。