AtomicInteger.GetAndAccumulate(Int32, IIntBinaryOperator) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
以不可部分完成的方式更新 (以 指定的 VarHandle#compareAndSet
記憶體效果)目前值,並將指定的函式套用至目前和指定值的結果,並傳回先前的值。
[Android.Runtime.Register("getAndAccumulate", "(ILjava/util/function/IntBinaryOperator;)I", "", ApiSince=24)]
public int GetAndAccumulate (int x, Java.Util.Functions.IIntBinaryOperator? accumulatorFunction);
[<Android.Runtime.Register("getAndAccumulate", "(ILjava/util/function/IntBinaryOperator;)I", "", ApiSince=24)>]
member this.GetAndAccumulate : int * Java.Util.Functions.IIntBinaryOperator -> int
參數
- x
- Int32
更新值
- accumulatorFunction
- IIntBinaryOperator
兩個自變數的無副作用函式
傳回
上一個值
- 屬性
備註
以不可部分完成的方式更新 (以 指定的 VarHandle#compareAndSet
記憶體效果)目前值,並將指定的函式套用至目前和指定值的結果,並傳回先前的值。 函式應該是無副作用的,因為嘗試更新失敗時可能會因為線程之間的爭用而重新套用。 函式會套用目前值做為其第一個自變數,並將指定的更新套用為第二個自變數。
已在1.8中新增。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。