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


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


Java.util.concurrent.atomic.AtomicIntegerArray.addAndGet()是Java中的一種內置方法,該方法原子地將給定值添加到AtomicIntegerArray索引處的元素。此方法將索引值和要添加的值作為參數,並在該索引處返回更新後的值。

用法:

public int addAndGet(int i, int delta)

參數:該函數接受兩個參數:


  • i–要在其中添加值的索引。
  • delta–要添加的值。

返回值:該函數返回整數形式的更新值。

以下示例程序旨在說明上述方法:
示例1:

// Java program that demonstrates 
// the addAndGet() function 
  
import java.util.concurrent.atomic.AtomicIntegerArray; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
        // Initializing an array 
        int a[] = { 10, 22, 33, 44, 55 }; 
  
        // Initializing an AtomicIntegerArray with array a 
        AtomicIntegerArray arr = new AtomicIntegerArray(a); 
  
        // Displaying the AtomicIntegerArray 
        System.out.println("The array : " + arr); 
  
        // Index where value is to be added 
        int idx = 0; 
  
        // Value to add with value at idx 
        int x = 16; 
  
        // Updating the value at 
        // idx applying addAndGet 
        arr.addAndGet(idx, x); 
  
        // Displaying the AtomicIntegerArray 
        System.out.println("The array after update : "
                           + arr); 
    } 
}
輸出:
The array : [10, 22, 33, 44, 55]
The array after update : [26, 22, 33, 44, 55]

示例2:

// Java program that demonstrates 
// the addAndGet() function 
  
import java.util.concurrent.atomic.AtomicIntegerArray; 
  
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 value is to be added 
        int idx = 3; 
  
        // Value to add with value at idx 
        int x = 16; 
  
        // Updating the value at 
        // idx applying addAndGet 
        arr.addAndGet(idx, x); 
  
        // 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, 20, 5]

參考: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#addAndGet(int, %20int)



相關用法


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