📌  相关文章
📜  Java中的 AtomicLongArray incrementAndGet() 方法及示例

📅  最后修改于: 2022-05-13 01:55:06.978000             🧑  作者: Mango

Java中的 AtomicLongArray incrementAndGet() 方法及示例

Java.util.concurrent.atomic.AtomicLongArray.incrementAndGet()是Java中的一种内置方法,它以原子方式将 AtomicLongArray 的任何索引处的值加一。该方法将 AtomicLongArray 的索引值作为参数,在该索引处递增值,并返回递增后的值。函数incrementAndGet()类似于getAndIncrement()函数,但前者返回增量后的值,而后者返回增量操作前的值。
句法:

参数:该函数接受单个参数i ,它是执行递增一次操作的索引。

返回值:函数返回long中递增操作后的值。

下面的程序说明了上述方法:

方案一:

// Java program that demonstrates
// the incrementAndGet() function
  
import java.util.concurrent.atomic.AtomicLongArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        long a[] = { 1, 2, 3, 4, 5 };
  
        // Initializing an AtomicLongArray with array a
        AtomicLongArray arr = new AtomicLongArray(a);
  
        // Displaying the AtomicLongArray
        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 AtomicLongArray
        System.out.println("The array after update : "
                           + arr);
    }
}
输出:
The array : [1, 2, 3, 4, 5]
The array after update : [1, 2, 3, 5, 5]

方案二:

// Java program that demonstrates
// the incrementAndGet() function
  
import java.util.concurrent.atomic.AtomicLongArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        long a[] = { 11, 12, 13, 14, 15 };
  
        // Initializing an AtomicLongArray with array a
        AtomicLongArray arr = new AtomicLongArray(a);
  
        // Displaying the AtomicLongArray
        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 AtomicLongArray
        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/8/docs/api/java Java