Wednesday, October 8, 2025
HomeLanguagesJavaAtomicReference set() method in Java with Examples

AtomicReference set() method in Java with Examples

The set() method of a AtomicReference class is used to set the value of this AtomicReference object with memory semantics of reading as if the variable was declared volatile type of variable.

Syntax:

public final void set(V newValue)

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

Return value: This method returns nothing.

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




// Java program to demonstrate
// AtomicReference.set() 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 using set method
        ref.set(13243546);
  
        // print value
        System.out.println("value 1 = " + ref.get());
    }
}


Output:

value 1 = 13243546

Program 2:




// Java program to demonstrate
// AtomicReference.set() 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 GEEKS FOR GEEKS");
  
        // print value
        System.out.println("V  = " + ref.get());
    }
}


Output:

V  = WELCOME TO GEEKS FOR GEEKS

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

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

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS