Java AtomicInteger set()方法及示例
java.util.concurrent.atomic.AtomicInteger.set() 是java中的一个内置方法,它可以更新之前的值,并将其设置为一个新的值,该值在参数中被传递。
语法
public final void set(int newVal)
参数: 该函数接受一个要更新的强制性参数 newVal 。
返回值: 该函数不返回任何东西。
下面的程序演示了这个函数。
程序1 :
// Java program that demonstrates
// the set() 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);
System.out.println("Previous value: "
+ val);
val.set(10);
// Prints the updated value
System.out.println("Current value: "
+ val);
}
}
输出。
Previous value: 0
Current value: 10
程序2
// Java program that demonstrates
// the set() 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);
System.out.println("Previous value: "
+ val);
val.set(200);
// Prints the updated value
System.out.println("Current value: "
+ val);
}
}
输出。
Previous value: 18
Current value: 200
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html#set-
极客教程