Java中的 AtomicLongArray updateAndGet() 方法及示例
Java.util.concurrent.atomic.AtomicLongArray.updateAndGet()是Java中的一个内置方法,它在对 AtomicLongArray 的任何给定索引处的值应用给定的更新函数后更新该索引处的值。该方法将 AtomicLongArray 的索引值和更新函数作为参数,并通过对该值应用更新函数来更新该索引处的值。该函数应该没有副作用,因为当尝试更新由于线程之间的争用而失败时,它可能会被重新应用。
句法:
public final long updateAndGet(int i, LongUnaryOperator updateFunction)
参数:该函数接受两个参数:
返回值:该函数返回一个long值,它是应用指定更新函数后的值。
下面的程序说明了上述方法:
方案一:
// Java program that demonstrates
// the updateAndGet() function
import java.util.concurrent.atomic.AtomicLongArray;
import java.util.function.LongUnaryOperator;
public class GFG {
public static void main(String args[])
{
// Initializing an array
long a[] = { 1, 2, 3, 4, 5 };
// Initializing an AtomicLongArray with array a
AtomicLongArray arr = new AtomicLongArray(a);
// Displaying the AtomicLongArray
System.out.println("The array : " + arr);
// Index where update is to be made
int idx = 4;
// Declaring the updateFunction
LongUnaryOperator squaredFunction = (l) -> l * l;
// Updating the value at idx
// applying updateFunction
arr.updateAndGet(idx, squaredFunction);
// Displaying the AtomicLongArray
System.out.println("The array after update : "
+ arr);
}
}
输出:
The array : [1, 2, 3, 4, 5]
The array after update : [1, 2, 3, 4, 25]
方案二:
// Java program that demonstrates
// the updateAndGet() function
import java.util.concurrent.atomic.AtomicLongArray;
import java.util.function.LongUnaryOperator;
public class GFG {
public static void main(String args[])
{
// Initializing an array
long a[] = { 1, 2, 3, 4, 5 };
// Initializing an AtomicLongArray with array a
AtomicLongArray arr = new AtomicLongArray(a);
// Displaying the AtomicLongArray
System.out.println("The array : " + arr);
// Index where update is to be made
int idx = 3;
// Declaring the updateFunction
LongUnaryOperator cubeFunction = (l) -> l * l * l;
// Updating the value at idx
// applying updateFunction
arr.updateAndGet(idx, cubeFunction);
// Displaying the AtomicLongArray
System.out.println("The array after update : "
+ arr);
}
}
输出:
The array : [1, 2, 3, 4, 5]
The array after update : [1, 2, 3, 64, 5]
参考: https: Java/util/concurrent/atomic/AtomicLongArray.html#updateAndGet-int-java.util。函数.LongUnaryOperator-