語言

AtomicInteger.UpdateAndGet(IIntUnaryOperator) 方法

定義

會以原子方式(依指定 VarHandle#compareAndSet記憶體效應)更新當前值,並回傳更新後的值。

[Android.Runtime.Register("updateAndGet", "(Ljava/util/function/IntUnaryOperator;)I", "", ApiSince=24)]
public int UpdateAndGet(Java.Util.Functions.IIntUnaryOperator? updateFunction);
[<Android.Runtime.Register("updateAndGet", "(Ljava/util/function/IntUnaryOperator;)I", "", ApiSince=24)>]
member this.UpdateAndGet : Java.Util.Functions.IIntUnaryOperator -> int

參數

updateFunction
IIntUnaryOperator

一個無副作用函數

傳回

更新後的數值

屬性

備註

會以原子方式(依指定 VarHandle#compareAndSet記憶體效應)更新當前值,並回傳更新後的值。 此函式應無副作用,因為當嘗試更新因執行緒間爭用失敗時,可重新套用此功能。

新增於1.8版本。

Java 文件 java.util.concurrent.atomic.AtomicInteger.updateAndGet(java.util.function.IntUnaryOperator)。

本頁部分內容為基於 Open Source Project 所創建與分享的作品,並依授權條款所描述的使用進行修改。

適用於