Java.util.concurrent.atomic.AtomicIntegerArray.updateAndGet()是Java中的一种内置方法,该方法在将给定索引值上的给定更新函数应用到AtomicIntegerArray的任何给定索引后,对该值进行更新。该方法将AtomicIntegerArray的索引值和update函数作为参数,并通过对该值应用update函数来更新该索引处的值。该函数应无副作用,因为当尝试更新由于线程间争用而失败时,可能会重新应用该函数。
用法:
public final int updateAndGet(int i, IntegerUnaryOperator updateFunction)
参数:该函数接受两个参数:
- i:是要进行更新的索引。
- updateFunction:是单个参数的更新函数,用于指示要进行的更新。
返回值:该函数返回一个int值,该值是应用指定的更新函数后的值。
以下示例程序旨在说明上述方法:
示例1:
// Java program that demonstrates
// the updateAndGet() function
import java.util.concurrent.atomic.AtomicIntegerArray;
import java.util.function.IntUnaryOperator;
public class GFG {
public static void main(String args[])
{
// Initializing an array
int a[] = { 1, 2, 3, 4, 5 };
// Initializing an AtomicIntegerArray with array a
AtomicIntegerArray arr = new AtomicIntegerArray(a);
// Displaying the AtomicIntegerArray
System.out.println("The array : " + arr);
// Index where update is to be made
int idx = 4;
// Declaring the updateFunction
IntUnaryOperator squaredFunction = (l) -> l * l;
// Updating the value at idx
// applying updateFunction
arr.updateAndGet(idx, squaredFunction);
// Displaying the AtomicIntegerArray
System.out.println("The array after update : "
+ arr);
}
}
输出:
The array : [1, 2, 3, 4, 5] The array after update : [1, 2, 3, 4, 25]
示例2:
// Java program that demonstrates
// the updateAndGet() function
import java.util.concurrent.atomic.AtomicIntegerArray;
import java.util.function.IntUnaryOperator;
public class GFG {
public static void main(String args[])
{
// Initializing an array
int a[] = { 1, 2, 3, 4, 5 };
// Initializing an AtomicIntegerArray with array a
AtomicIntegerArray arr = new AtomicIntegerArray(a);
// Displaying the AtomicIntegerArray
System.out.println("The array : " + arr);
// Index where update is to be made
int idx = 3;
// Declaring the updateFunction
IntUnaryOperator cubeFunction = (l) -> l * l * l;
// Updating the value at idx
// applying updateFunction
arr.updateAndGet(idx, cubeFunction);
// Displaying the AtomicIntegerArray
System.out.println("The array after update : "
+ arr);
}
}
输出:
The array : [1, 2, 3, 4, 5] The array after update : [1, 2, 3, 64, 5]
相关用法
- Java AtomicReferenceArray updateAndGet()用法及代码示例
- Java AtomicInteger updateAndGet()用法及代码示例
- Java AtomicReference updateAndGet()用法及代码示例
- Java AtomicLongArray updateAndGet()用法及代码示例
- Java AtomicLong updateAndGet()用法及代码示例
- Java AtomicIntegerArray set()用法及代码示例
- Java AtomicIntegerArray get()用法及代码示例
- Java AtomicIntegerArray decrementAndGet()用法及代码示例
- Java AtomicIntegerArray toString()用法及代码示例
- Java AtomicIntegerArray accumulateAndGet()用法及代码示例
- Java AtomicIntegerArray getAndUpdate()用法及代码示例
- Java AtomicIntegerArray addAndGet()用法及代码示例
- Java AtomicIntegerArray compareAndSet()用法及代码示例
- Java AtomicIntegerArray getAndDecrement()用法及代码示例
- Java AtomicIntegerArray getAndIncrement()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 AtomicIntegerArray updateAndGet() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。