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


Java AtomicReference compareAndExchangeRelease()用法及代碼示例


如果AtomicReference對象的當前值(稱為見證值)等於期望值並返回見證值,則使用AtomicReference類的compareAndExchangeRelease()方法將Atommic值以原子方式將newValue設置為AtomicReference對象。此方法將更新該值,並確保在此訪問之後不會對先前的加載和存儲進行重新排序。

用法:

public final V compareAndExchangeRelease(
                                  V expectedValue,
                                  V newValue)

參數:該方法接受ExpectedValue(期望值)和newValue(新值)來設置新值。


返回值:此方法返回見證值,如果成功,它將與期望值相同。

以下示例程序旨在說明compareAndExchangeRelease()方法:
程序1:

// Java program to demonstrate 
// AtomicReference.compareAndExchangeRelease() method 
  
import java.util.concurrent.atomic.AtomicReference; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an atomic reference object 
        // which stores Integer. 
        AtomicReference<Long> ref 
            = new AtomicReference<Long>(); 
  
        // set some value 
        ref.set(987654321L); 
  
        // apply compareAndExchangeRelease() 
        long oldValue 
            = ref.compareAndExchangeRelease( 
                987654321L, 
                999999L); 
  
        // print value 
        System.out.println("Witness Value = "
                           + oldValue); 
    } 
}
輸出:

程序2:

// Java program to demonstrate 
// AtomicReference.compareAndExchangeRelease() method 
  
import java.util.concurrent.atomic.AtomicReference; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an atomic reference object. 
        AtomicReference<String> ref 
            = new AtomicReference<String>(); 
  
        // set some value 
        ref.set("Geeks For Geeks"); 
  
        // apply compareAndExchangeRelease() 
        String oldValue 
            = ref.compareAndExchangeRelease( 
                "Geeks For Geeks", 
                "GFG"); 
  
        // print value 
        System.out.println("Witness Value = "
                           + oldValue); 
    } 
}
輸出:

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/util/concurrent/atomic/AtomicReference.html#compareAndExchangeRelease(V, V)



相關用法


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