Java AtomicInteger set()方法及示例

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-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程