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

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

Java中的 AtomicInteger getAndAdd() 方法及示例

Java.util.concurrent.atomic.AtomicInteger.getAndAdd()是Java中的一个内置方法,它将给定值添加到当前值并返回数据类型int的更新前的值。

句法:

public final int getAndAdd(int val)

参数:该函数接受一个强制参数val ,该参数指定要添加到当前值的值。

返回值:函数返回前一个值加法前的值。

下面的程序演示了该函数:

方案一:

// Java program that demonstrates
// the getAndAdd() function
  
import java.util.concurrent.atomic.AtomicInteger;
  
public class GFG {
    public static void main(String args[])
    {
  
        // Initially value as 0
        AtomicInteger val
            = new AtomicInteger(0);
  
        // Adds 7 and gets the previous value
        int res
            = val.getAndAdd(7);
  
        // Prints the updated value
        System.out.println("Previous value: "
                           + res);
  
        System.out.println("Current value: "
                           + val);
    }
}
输出:
Previous value: 0
Current value: 7

方案二:

// Java program that demonstrates
// the getAndAdd() function
  
import java.util.concurrent.atomic.AtomicInteger;
  
public class GFG {
    public static void main(String args[])
    {
  
        // Initially value as 18
        AtomicInteger val
            = new AtomicInteger(18);
  
        // Prints the updated value
        System.out.println("Previous value: "
                           + val);
  
        // Adds 8 and gets the previous value
        int res = val.getAndAdd(8);
  
        // Prints the updated value
        System.out.println("Previous value: "
                           + res);
  
        System.out.println("Current value: "
                           + val);
    }
}
输出:
Previous value: 18
Previous value: 18
Current value: 26

参考: https: Java/util/concurrent/atomic/AtomicInteger.html#getAndAdd-int-