共用方式為


AtomicBoolean.CompareAndSet(Boolean, Boolean) 方法

定義

以不可部分完成的方式設定值,如果目前的值newValue== expectedValue為 ,且具有 指定的VarHandle#compareAndSet記憶體效果。

[Android.Runtime.Register("compareAndSet", "(ZZ)Z", "")]
public bool CompareAndSet (bool expectedValue, bool newValue);
[<Android.Runtime.Register("compareAndSet", "(ZZ)Z", "")>]
member this.CompareAndSet : bool * bool -> bool

參數

expectedValue
Boolean

預期的值

newValue
Boolean

新值

傳回

如果成功,則為 true。 False 傳回表示實際值不等於預期的值。

屬性

備註

以不可部分完成的方式設定值,如果目前的值newValue== expectedValue為 ,且具有 指定的VarHandle#compareAndSet記憶體效果。

java.util.concurrent.atomic.AtomicBoolean.compareAndSet(boolean, boolean)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於