Friday, January 30, 2026
HomeLanguagesJavaAtomicInteger compareAndSet() method in Java with examples

AtomicInteger compareAndSet() method in Java with examples

The java.util.concurrent.atomic.AtomicInteger.compareAndSet() 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 compareAndSet(int expect, int val)

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

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

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

Program below demonstrates the function:

Program 1:




// Java Program to demonstrates
// the compareAndSet() function
  
import java.util.concurrent.atomic.AtomicInteger;
  
public class GFG {
    public static void main(String args[])
    {
  
        // Initially value as 0
        AtomicInteger val = new AtomicInteger(0);
  
        // Prints the updated value
        System.out.println("Previous value: "
                           + val);
  
        // Checks if previous value was 0
        // and then updates it
        boolean res = val.compareAndSet(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 Program to demonstrates
// the compareAndSet() function
  
import java.util.concurrent.atomic.AtomicInteger;
  
public class GFG {
    public static void main(String args[])
    {
  
        // Initially value as 0
        AtomicInteger val
            = new AtomicInteger(0);
  
        // Prints the updated value
        System.out.println("Previous value: "
                           + val);
  
        // Checks if previous value was 0
        // and then updates it
        boolean res = val.compareAndSet(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/AtomicInteger.html#compareAndSet–

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

1 COMMENT

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS