AtomicReferenceArray set() method in Java with Examples Last Updated : 03 Jan, 2020 Comments Improve Suggest changes Like Article Like Report The set() method of a AtomicReferenceArray class is used to set the value of the element at index i to newValue. Both index i and newValue are passed as parameters to the method. This method set the value with memory semantics of reading as if the variable was declared volatile type of variable. Syntax: public final void set(int i, E newValue) Parameters: This method accepts: i which is an index of AtomicReferenceArray to perform the operation, newValue which is the new value to set. Return value: This method returns nothing. Below programs illustrate the set() method: Program 1: Java // Java program to demonstrate // AtomicReferenceArray.set() method import java.util.concurrent.atomic.*; public class GFG { public static void main(String[] args) { // create an atomic reference object. AtomicReferenceArray<Integer> ref = new AtomicReferenceArray<Integer>(5); // set some value and print ref.set(0, 2345); ref.set(1, 543); ref.set(2, 322); System.out.println("Value of index 0 = " + ref.get(0)); System.out.println("Value of index 1 = " + ref.get(1)); System.out.println("Value of index 2 = " + ref.get(2)); } } Output: Value of index 0 = 2345 Value of index 1 = 543 Value of index 2 = 322 Program 2: Java // Java program to demonstrate // AtomicReferenceArray.set() method import java.util.concurrent.atomic.*; public class GFG { public static void main(String[] args) { // create an atomic reference object.c AtomicReferenceArray<String> ref = new AtomicReferenceArray<String>(5); // set some value ref.set(0, "C"); ref.set(1, "PYTHON"); ref.set(2, "TS"); ref.set(3, "C++"); ref.set(4, "C"); // print for (int i = 0; i < 5; i++) { System.out.println(ref.get(i)); } } } Output: C PYTHON TS C++ C References: https://docs.oracle.com/javase/10/docs/api/java/util/concurrent/atomic/AtomicReferenceArray.html#set(int, E) Comment A AmanSingh2210 Follow 0 Improve A AmanSingh2210 Follow 0 Improve Article Tags : Java Java-Functions Java-util-concurrent-atomic package Java-AtomicReferenceArray Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java9 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like