Monday, November 18, 2024
Google search engine
HomeLanguagesJavaAtomicLong weakCompareAndSet() method in Java with examples

AtomicLong weakCompareAndSet() method in Java with examples

The Java.util.concurrent.atomic.AtomicLong.weakCompareAndSet() is an inbuilt method in java that sets the value to the passed value in the parameter if the current value is equal to the expected value which is also passed in the parameter. The function returns a boolean value which gives us an idea if the update was done or not. 

Syntax: 

public final boolean weakCompareAndSet(long expect,
                                       long val)

Parameters: The function accepts two mandatory parameters which are described below:  

  • expect: specifies the value that the atomic object should be.
  • val: specifies the value to be updated if the atomic longer is equal to expect.

Return value: The function returns a boolean value, it returns true on success else false. 

Below programs illustrate the above method:

Program 1:  

Java




// Java program that demonstrates
// the weakCompareAndSet() function
 
import java.util.concurrent.atomic.AtomicLong;
 
public class GFG {
    public static void main(String args[])
    {
 
        // Initially value as 0
        AtomicLong val = new AtomicLong(0);
 
        // Prlongs the updated value
        System.out.println("Previous value: "
                           + val);
 
        // Checks if previous value was 0
        // and then updates it
        boolean res
            = val.weakCompareAndSet(0, 6);
 
        // Checks if the value was updated.
        if (res)
            System.out.println("The value was "
                               + "updated and it is "
                               + val);
        else
            System.out.println("The value was "
                               + "not updated");
    }
}


Output: 

Previous value: 0
The value was updated and it is 6

 

Program 2: 

Java




// Java program that demonstrates
// the weakCompareAndSet() function
 
import java.util.concurrent.atomic.AtomicLong;
 
public class GFG {
    public static void main(String args[])
    {
 
        // Initially value as 0
        AtomicLong val = new AtomicLong(0);
 
        // Prlongs the updated value
        System.out.println("Previous value: "
                           + val);
 
        // Checks if previous value was 0
        // and then updates it
        boolean res
            = val.weakCompareAndSet(10, 6);
 
        // Checks if the value was updated.
        if (res)
            System.out.println("The value was "
                               + "updated and it is "
                               + val);
        else
            System.out.println("The value was "
                               + "not updated");
    }
}


Output: 

Previous value: 0
The value was not updated

 

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html#weakCompareAndSet–
 

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments