Thursday, August 28, 2025
HomeLanguagesJavaAtomicReference weakCompareAndSet() method in Java with Examples

AtomicReference weakCompareAndSet() method in Java with Examples

The weakCompareAndSet() method of a AtomicReference class is used to atomically sets the value to newValue for AtomicReference if the current value is equal to expectedValue passed as parameter. This method update the value with memory semantics of reading as if the variable was declared volatile type of variable. This method returns true if set a new value to AtomicReference is successful.

Syntax:

public final boolean weakCompareAndSet(V expectedValue,
                                       V newValue)

Parameters: This method accepts expectedValue which is the expected value and newValue which is the new value to set.

Return value: This method returns true if successful.

Below programs illustrate the weakCompareAndSet() method:
Program 1:




// Java program to demonstrate
// AtomicReference.weakCompareAndSet() 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<Integer> ref
            = new AtomicReference<Integer>();
  
        // set some value
        ref.set(999);
  
        // apply weakCompareAndSet()
        boolean result
            = ref.weakCompareAndSet(999,
                                    999999);
  
        // print value
        System.out.println("Setting new value"
                           + " is successful = "
                           + result);
        System.out.println("New Value = "
                           + ref.get());
    }
}


Output:

Setting new value is successful = false
New Value = 999

Program 2:




// Java program to demonstrate
// AtomicReference.weakCompareAndSet() method
  
import java.util.concurrent.atomic.AtomicReference;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create an atomic reference object
        // which stores String.
        AtomicReference<String> ref
            = new AtomicReference<String>();
  
        // set some value
        ref.set("GEEKS FOR GEEKS");
  
        // apply weakCompareAndSet()
        ref.weakCompareAndSet("GEEKS FOR GEEKS",
                              "GFG");
  
        // print value
        System.out.println("Value  = "
                           + ref.get());
    }
}


Output:

Value  = GFG

References: https://docs.oracle.com/javase/10/docs/api/java/util/concurrent/atomic/AtomicReference.html#weakCompareAndSet(V, V)

RELATED ARTICLES

Most Popular

Dominic
32236 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6609 POSTS0 COMMENTS
Nicole Veronica
11779 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11828 POSTS0 COMMENTS
Shaida Kate Naidoo
6719 POSTS0 COMMENTS
Ted Musemwa
7002 POSTS0 COMMENTS
Thapelo Manthata
6678 POSTS0 COMMENTS
Umr Jansen
6690 POSTS0 COMMENTS