当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java AtomicLongArray getAndAdd()用法及代码示例


Java.util.concurrent.atomic.AtomicLongArray.getAndAdd()是Java中的一种内置方法,该方法原子地将给定值添加到AtomicLongArray索引处的元素。此方法将AtomicLongArray的索引值和要添加的值作为参数,并返回添加操作之前的值。函数getAndAdd()与addAndGet()类似,但前一个函数在加法运算之前返回值,而后一个函数在加法运算之后返回值。

用法:

public final long getAndAdd(int i, long delta)



参数:该函数接受两个参数:

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

返回值:该函数返回加长操作之前的值,该值为long类型。

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

示例1:

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

示例2:

// Java program that demonstrates 
// the getAndAdd() 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 value is to be added 
        int idx = 3; 
  
        // Value to add with value at idx 
        long x = 16; 
  
        // Updating the value at 
        // idx applying getAndAdd and 
        // storing the previous value 
        long prev = arr.getAndAdd(idx, x); 
  
        // Previous value at index idx 
        // before update 
        System.out.println("Value at index " + idx 
                           + " before update is "
                           + prev); 
  
        // Displaying the AtomicLongArray 
        System.out.println("The array after update : "
                           + arr); 
    } 
}
输出:
The array : [1, 2, 3, 4, 5]
Value at index 3 before update is 4
The array after update : [1, 2, 3, 20, 5]

参考:
https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#getAndAdd-int-long-



相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 AtomicLongArray getAndAdd() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。