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