The Java.util.concurrent.atomic.AtomicIntegerArray.set() is an inbuilt method in Java that sets a given value at any position of the AtomicIntegerArray. This method takes the index value of the AtomicIntegerArray as parameter and updates the value at that index. This method does not return any value. The function set() is similar to getAndSet() function but the former does not return any value while the latter returns the value at the given index before setting the new value at that index.
Syntax:
public final void set(int i, int newValue)
Parameters: The function takes two parameters:
- i – The index value where the update is to be made.
- newValue – The new value to update at the index.
Return Value: The function does not return any value.
Below programs illustrate the above method:
Program 1:
| // Java program that demonstrates// the set() function Âimportjava.util.concurrent.atomic.AtomicIntegerArray; ÂpublicclassGFG {    publicstaticvoidmain(String args[])    {        // Initializing an array        inta[] = { 1, 2, 3, 4, 5}; Â        // Initializing an AtomicIntegerArray with array a        AtomicIntegerArray arr = newAtomicIntegerArray(a); Â        // Displaying the AtomicIntegerArray        System.out.println("The array : "+ arr); Â        // Index where operation is performed        intidx = 0; Â        // The new value to update at idx        intval = 10; Â        // Updating the value at        // idx applying set        arr.set(idx, val); Â        // Displaying the AtomicIntegerArray        System.out.println("The array after update : "                           + arr);    }} | 
The array : [1, 2, 3, 4, 5] The array after update : [10, 2, 3, 4, 5]
Program 2:
| // Java program that demonstrates// the set() function Âimportjava.util.concurrent.atomic.AtomicIntegerArray; ÂpublicclassGFG {    publicstaticvoidmain(String args[])    {        // Initializing an array        inta[] = { 1, 2, 3, 4, 5}; Â        // Initializing an AtomicIntegerArray with array a        AtomicIntegerArray arr = newAtomicIntegerArray(a); Â        // Displaying the AtomicIntegerArray        System.out.println("The array : "+ arr); Â        // Index where operation is performed        intidx = 3; Â        // The new value to update at idx        intval = 100; Â        // Updating the value at        // idx applying set        arr.set(idx, val); Â        // Displaying the AtomicIntegerArray        System.out.println("The array after update : "                           + arr);    }} | 
The array : [1, 2, 3, 4, 5] The array after update : [1, 2, 3, 100, 5]


 
                                    







