AtomicLongArray set() method in Java with Examples Last Updated : 08 Feb, 2019 Comments Improve Suggest changes Like Article Like Report The Java.util.concurrent.atomic.AtomicLongArray.set() is an inbuilt method in Java that sets a given value at any position of the AtomicLongArray. This method takes the index value of the AtomicLongArray 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, long 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 // Java program that demonstrates // the set() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 1, 2, 3, 4, 5 }; // Initializing an AtomicLongArray with array a AtomicLongArray arr = new AtomicLongArray(a); // Displaying the AtomicLongArray System.out.println("The array : " + arr); // Index where operation is performed int idx = 0; // The new value to update at idx long val = 10; // Updating the value at // idx applying set arr.set(idx, val); // Displaying the AtomicLongArray System.out.println("The array after update : " + arr); } } Output: The array : [1, 2, 3, 4, 5] The array after update : [10, 2, 3, 4, 5] Program 2: Java // Java program that demonstrates // the set() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 1, 2, 3, 4, 5 }; // Initializing an AtomicLongArray with array a AtomicLongArray arr = new AtomicLongArray(a); // Displaying the AtomicLongArray System.out.println("The array : " + arr); // Index where operation is performed int idx = 3; // The new value to update at idx long val = 100; // Updating the value at // idx applying set arr.set(idx, val); // Displaying the AtomicLongArray System.out.println("The array after update : " + arr); } } Output: The array : [1, 2, 3, 4, 5] The array after update : [1, 2, 3, 100, 5] Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#set-int-long- Comment More infoAdvertise with us Next Article AtomicLongArray set() method in Java with Examples rupesh_rao Follow Improve Article Tags : Java Java - util package Java-Functions Java-AtomicLongArray Practice Tags : Java Similar Reads AtomicLong set() method in Java with examples The Java.util.concurrent.atomic.AtomicLong.set() is an inbuilt method in java that updates the previous value and sets it to a new value which is passed in the parameter. Syntax: public final void set(long newVal) Parameters: The function accepts a single mandatory parameter newVal which is to be up 1 min read AtomicIntegerArray set() method in Java with Examples 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 2 min read AtomicLongArray toString() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.toString() is an inbuilt method in Java that returns a string that textually represents the current values of the AtomicLongArray. The resulting string is a concise and informative representation that is easy for a person to read. It is used to easily 2 min read AtomicLongArray get() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.get() is an inbuilt method in java that gets the current value at any position of the AtomicLongArray. This method takes the index value as the parameter and returns the value at this index. Syntax: public final long get(int i) Parameters: The function 2 min read AtomicReferenceArray set() method in Java with Examples 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. Syn 2 min read AtomicInteger set() method in Java with examples The java.util.concurrent.atomic.AtomicInteger.set() is an inbuilt method in java that updates the previous value and sets it to a new value which is passed in the parameter. Syntax: public final void set(int newVal) Parameters: The function accepts a single mandatory parameter newVal which is to be 1 min read AtomicLongArray lazySet() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.lazySet() is an inbuilt method in Java that eventually sets a given value at any given index of an AtomicLongArray. The method takes the index value of the AtomicLongArray and the value to set as the parameters and updates the previous value without re 2 min read AtomicIntegerArray toString() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.toString() is an inbuilt method in Java that returns a string that textually represents the current values of the AtomicIntegerArray. The resulting string is a concise and informative representation that is easy for a person to read. It is used to e 2 min read AtomicLongArray getAndSet() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.getAndSet() is an inbuilt method in Java that atomically sets a given value at any given position of the AtomicLongArray. The method takes the index value of the AtomicLongArray and the value to set as the parameters. It returns the value at the given 3 min read Set clear() method in Java with Examples The Java.util.Set.clear() method is used to remove all the elements from a Set. Using the clear() method only clears all the element from the set and not deletes the set. In other words, we can say that the clear() method is used to only empty an existing Set. Syntax: void clear() Parameters: The me 1 min read Like