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