Java AtomicBoolean compareAndSet()方法及示例
java.util.concurrent.atomic.AtomicBoolean.compareAndSet() 是java中的一个内置方法,如果当前值与参数中传递的预期值相等,则将该值设置为参数中传递的值。该函数返回一个布尔值,让我们知道是否已经完成了更新。
语法
public final boolean compareAndSet(boolean expect, boolean val)
参数: 该函数接受两个强制性参数,如下所述。
- expect: 它指定了原子对象应该有的值。
- val: 它指定了在原子布尔值等于期望值时要更新的值。
返回值: 该函数返回一个布尔值,成功时返回真,否则返回假。
下面的程序说明了上述函数。
程序1 :
// Java Program to demonstrates
// the compareAndSet() 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);
// Prints the updated value
System.out.println("Previous value: "
+ val);
// Checks if previous value was false
// and then updates it
boolean res = val.compareAndSet(false, true);
// Checks if the value was updated.
if (res)
System.out.println("The value was"
+ " updated and it is "
+ val);
else
System.out.println("The value was "
+ "not updated");
}
}
输出。
Previous value: false
The value was updated and it is true
程序2
// Java Program to demonstrates
// the compareAndSet() 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);
// Prints the updated value
System.out.println("Previous value: "
+ val);
// Checks if previous value was true
// and then updates it
boolean res = val.compareAndSet(true, false);
// Checks if the value was updated.
if (res)
System.out.println("The value was"
+ " updated and it is "
+ val);
else
System.out.println("The value was "
+ "not updated");
}
}
输出。
Previous value: true
The value was updated and it is false
**参考资料: **https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicBoolean.html#compareAndSet(boolean, %20boolean)