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


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


Java.util.concurrent.atomic.AtomicIntegerArray.get()是Java中的一種內置方法,可在AtomicIntegerArray的任何位置獲取當前值。此方法將索引值作為參數,並返回此索引處的值。

用法:

public final int get(int i)

參數:該函數接受單個參數,即要獲取的索引值。


返回值:該函數返回索引i處的當前值。

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

示例1:

// Java program that demonstrates 
// the get() 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 to get 
        int idx = 2; 
  
        // Using get() to retrieve value at idx 
        int val = arr.get(idx); 
  
        // Displaying the value at idx 
        System.out.println("Value at index " + idx 
                           + " is " + val); 
    } 
}
輸出:
The array : [1, 2, 3, 4, 5]
Value at index 2 is 3

示例2:

// Java program that demonstrates 
// the get() function 
  
import java.util.concurrent.atomic.AtomicIntegerArray; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
        // Initializing an array 
        int a[] = { 12, 22, 23, 24, 25 }; 
  
        // Initializing an AtomicIntegerArray with array a 
        AtomicIntegerArray arr = new AtomicIntegerArray(a); 
  
        // Displaying the AtomicIntegerArray 
        System.out.println("The array : " + arr); 
  
        // Index to get 
        int idx = 4; 
  
        // Using get() to retrieve value at idx 
        int val = arr.get(idx); 
  
        // Displaying the value at idx 
        System.out.println("Value at index " + idx 
                           + " is " + val); 
    } 
}
輸出:
The array : [12, 22, 23, 24, 25]
Value at index 4 is 25

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



相關用法


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