Java AtomicLong decrementAndGet()方法及示例
Java.util.concurrent.atomic.AtomicLong.decrementAndGet() 是java中的一个内置方法,它将先前的值减少1,并在更新后返回数据类型为 long的 值。
语法
public final long decrementAndGet()
参数: 该函数不接受单一参数。
返回值: 该函数在对前一个值进行递减操作后返回值。
以下程序说明了上述方法。
程序1 :
// Java program that demonstrates
// the decrementAndGet() function
import java.util.concurrent.atomic.AtomicLong;
public class GFG {
public static void main(String args[])
{
// Initially value as 0
AtomicLong val = new AtomicLong(0);
System.out.println("Previous value: "
+ val);
// Decrement and get
long res
= val.decrementAndGet();
// Prints the updated value
System.out.println("Current value: "
+ res);
}
}
输出
Previous value: 0
Current value: -1
程序2
// Java program that demonstrates
// the decrementAndGet() function
import java.util.concurrent.atomic.AtomicLong;
public class GFG {
public static void main(String args[])
{
// Initially value as 18
AtomicLong val = new AtomicLong(18);
System.out.println("Previous value: "
+ val);
// Decrement and get new value
long res = val.decrementAndGet();
// Prints the updated value
System.out.println("Current value: "
+ res);
}
}
输出
Previous value: 18
Current value: 17
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html#decrementAndGet-
极客教程