Wednesday, July 3, 2024
HomeLanguagesJavaAtomicReference weakCompareAndSetRelease() method in Java with Examples

AtomicReference weakCompareAndSetRelease() method in Java with Examples

The weakCompareAndSetRelease() 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 updates the value and ensures that prior loads and stores are not reordered after this access. This method returns true if set a new value to AtomicReference is successful. Syntax:

public final boolean
       weakCompareAndSetRelease(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 weakCompareAndSetRelease() method: Program 1: 

Java




// Java program to demonstrate
// AtomicReference.weakCompareAndSetRelease() method
 
import java.util.concurrent.atomic.AtomicReference;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // create an atomic reference object.
        AtomicReference<Float> ref
            = new AtomicReference<Float>();
 
        // set some value
        ref.set(12.3400f);
 
        // apply weakCompareAndSetRelease()
        boolean result
            = ref.weakCompareAndSetRelease(
                1.2f,
                234.32f);
 
        // print value
        System.out.println("Setting new value"
                           + " is successful = "
                           + result);
        System.out.println("Value = " + ref.get());
    }
}


Output:

Program 2: 

Java




// Java program to demonstrate
// AtomicReference.weakCompareAndSetRelease() 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("WELCOME TO GFG");
 
        // apply weakCompareAndSetRelease()
        boolean result
            = ref.weakCompareAndSetRelease(
                "WELCOME TO GFG",
                "WELCOME TO GEEKS FOR GEEKS");
 
        // print value
        System.out.println("Setting new value"
                           + " is successful = " + result);
        System.out.println("Value  = " + ref.get());
    }
}


Output:

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

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments