Java AtomicInteger incrementAndGet()方法及示例
java.util.concurrent.atomic.AtomicInteger.incrementAndGet() 是java中的一个内置方法,它可以将之前的值增加1,并在更新后返回数据类型为 int 的值。
语法
public final int incrementAndGet()
参数: 该函数不接受单个参数。
返回值: 该函数在对前一个值进行增量操作后返回值。
下面的程序演示了该函数。
程序 1 :
// Java program that demonstrates
// the incrementAndGet() 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);
System.out.println("Previous value: "
+ val);
// Increment and get
int res
= val.incrementAndGet();
// Prints the updated value
System.out.println("Current value: "
+ res);
}
}
输出
Previous value: 0
Current value: 1
程序2
// Java program that demonstrates
// the incrementAndGet() 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);
System.out.println("Previous value: "
+ val);
// Increment and get new value
int res = val.incrementAndGet();
// Prints the updated value
System.out.println("Current value: "
+ res);
}
}
输出
Previous value: 18
Current value: 19
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html#incrementAndGet-
极客教程