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


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


Java.util.concurrent.atomic.AtomicIntegerArray.incrementAndGet()是Java中的一種內置方法,可以自動將AtomicIntegerArray的任何索引處的值加1。該方法將AtomicIntegerArray的索引值作為參數,對該索引處的值進行遞增,並在遞增之後返回該值。函數incrementAndGet()與getAndIncrement()函數相似,但前者在增量之後返回值,而後者在增量操作之前返回值。

用法:

public final int incrementAndGet(int i)

參數:該函數接受單個參數i,該參數是執行一個操作遞增的索引。


返回值:函數在Integer中的增量操作之後返回值。

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

示例1:

// Java program that demonstrates 
// the incrementAndGet() 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 operation is performed 
        int idx = 3; 
  
        // Updating the value at 
        // idx applying incrementAndGet 
        arr.incrementAndGet(idx); 
  
        // 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, 5, 5]

示例2:

// Java program that demonstrates 
// the incrementAndGet() function 
  
import java.util.concurrent.atomic.AtomicIntegerArray; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
        // Initializing an array 
        int a[] = { 11, 12, 13, 14, 15 }; 
  
        // Initializing an AtomicIntegerArray with array a 
        AtomicIntegerArray arr = new AtomicIntegerArray(a); 
  
        // Displaying the AtomicIntegerArray 
        System.out.println("The array : " + arr); 
  
        // Index where operation is performed 
        int idx = 0; 
  
        // Updating the value at 
        // idx applying incrementAndGet 
        arr.incrementAndGet(idx); 
  
        // Displaying the AtomicIntegerArray 
        System.out.println("The array after update : "
                           + arr); 
    } 
}
輸出:
The array : [11, 12, 13, 14, 15]
The array after update : [12, 12, 13, 14, 15]

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



相關用法


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