Java AtomicBoolean getAndSet()方法及示例
Java.util.concurrent.atomic.AtomicBoolean.getAndSet() 是java中的一个内置方法,它将给定的值设置为参数中传递的值,并返回更新前的值,该值为数据类型 布尔。
语法
public final boolean getAndSet(boolean val)
参数: 该函数接受一个强制参数 val ,它指定了要更新的值。
返回值: 该函数返回更新操作前的值,即先前的值。
下面的程序说明了上述方法。
程序1 :
// Java program that demonstrates
// the getAndSet() function
import java.util.concurrent.atomic.AtomicBoolean;
public class GFG {
public static void main(String args[])
{
// Initially value as false
AtomicBoolean val = new AtomicBoolean(false);
// Updates and sets
boolean res
= val.getAndSet(true);
System.out.println("Previous value: "
+ res);
// Prints the updated value
System.out.println("Current value: "
+ val);
}
}
输出。
Previous value: false
Current value: true
程序2。
// Java program that demonstrates
// the getAndSet() function
import java.util.concurrent.atomic.AtomicBoolean;
public class GFG {
public static void main(String args[])
{
// Initially value as true
AtomicBoolean val = new AtomicBoolean(true);
// Gets and updates
boolean res = val.getAndSet(false);
System.out.println("Previous value: "
+ res);
// Prints the updated value
System.out.println("Current value: "
+ val);
}
}
输出。
Previous value: true
Current value: false
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicBoolean.html#getAndSet-boolean-
极客教程