當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java AtomicLong updateAndGet()用法及代碼示例


Java.AtomicLong.updateAndGet()方法是一種內置方法,該方法通過對當前值應用指定的操作來更新對象的當前值。它以LongUnaryOperator接口的對象為參數,並將該對象中指定的操作應用於當前值。它返回更新的值。

用法:

public final long updateAndGet(LongUnaryOperator function)

參數:此方法接受LongUnaryOperator函數作為參數。它將給定的函數應用於對象的當前值。


返回值:該函數返回當前對象的更新值。

實例演示函數。

// Java programt 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://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html



相關用法


注:本文由純淨天空篩選整理自CharchitKapoor大神的英文原創作品 AtomicLong updateAndGet() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。