Java 中的 AtomicInteger getAndDecrement()方法,带示例
原文:https://www . geeksforgeeks . org/atomicintger-getanddecade-method-in-Java-with-examples/
java . util . concurrent . atomic . atomicinteger . GetAndDefault()是 Java 中的一个内置方法,它将给定值减少 1,并在更新前返回数据类型为 int 的值。
语法:
public final int getAndDecrement()
参数:函数不接受单个参数。
返回值:该函数将执行减量操作前的值返回到前一个值。
下面的程序演示了该功能:
程序 1:
// Java program that demonstrates
// the getAndDecrement() 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.getAndDecrement();
// Prints the updated value
System.out.println("Previous value: "
+ res);
System.out.println("Current value: "
+ val);
}
}
输出:
Previous value: 0
Current value: -1
程序二:
// Java program that demonstrates
// the getAndDecrement() 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);
// Decreases 1 and gets
// the previous value
int 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
版权属于:月萌API www.moonapi.com,转载请注明出处