當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java AtomicIntegerArray updateAndGet()用法及代碼示例


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]

參考: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#updateAndGet-int-java.util.function.IntUnaryOperator-



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 AtomicIntegerArray updateAndGet() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。