📌  相关文章
📜  Java中的 AtomicLong updateAndGet() 方法及示例

📅  最后修改于: 2022-05-13 01:55:24.521000             🧑  作者: Mango

Java中的 AtomicLong updateAndGet() 方法及示例

Java.AtomicLong.updateAndGet()方法是一个内置方法,它通过对当前值应用指定的操作来更新对象的当前值。它将 LongUnaryOperator 接口的对象作为其参数,并将对象中指定的操作应用于当前值。它返回更新的值。

句法:

public final long updateAndGet(LongUnaryOperator function)

参数:此方法接受 LongUnaryOperator函数作为参数。它将给定函数应用于对象的当前值。

返回值:函数返回当前对象的更新值。

示例来演示函数。

Java
// Java program to demonstrate
// AtomicLong updateAndGet() method
 
import java.util.concurrent.atomic.AtomicLong;
import java.util.function.LongUnaryOperator;
 
public class Demo {
    public static void main(String[] args)
    {
        // AtomicLong initialized with a value of -20000
        AtomicLong al = new AtomicLong(-20000);
 
        // Unary operator defined to negate the value
        LongUnaryOperator unaryOperator = (x) -> - x;
 
        System.out.println("Initial Value is " + al);
 
        // Function called and the unary operator
        // is passed as an argument
        long x = al.updateAndGet(unaryOperator);
        System.out.println("Updated value is " + x);
    }
}


输出:
Initial Value is -20000
Updated value is 20000

参考: https: Java/util/concurrent/atomic/AtomicLong.html