AtomicReferenceArray getAcquire() method in Java with Examples Last Updated : 19 Apr, 2023 Comments Improve Suggest changes Like Article Like Report The getAcquire() method of a AtomicReferenceArray class is used to return the value of the element at index i for this AtomicReferenceArray object with memory ordering effects compatible with memory_order_acquire ordering. Syntax: public final E getAcquire(int i) Parameters: This method accepts the index i to get the value. Return value: This method returns current value at index I. Below programs illustrate the getAcquire() method: Program 1: Java // Java program to demonstrate // AtomicReferenceArray.getAcquire() method import java.util.concurrent.atomic.AtomicReferenceArray; public class GFG { public static void main(String[] args) { // create an atomic reference array // object which stores Integer. AtomicReferenceArray<Integer> array = new AtomicReferenceArray<Integer>(5); // set some value in array array.set(0, 1213); array.set(1, 1344); array.set(2, 1453); array.set(3, 1452); // get and print the value // using getAcquire method for (int i = 0; i < 4; i++) { int value = array.getAcquire(i); System.out.println("value at " + i + " = " + value); } } } Output: Program 2: Java // Java program to demonstrate // AtomicReferenceArray.getAcquire() method import java.util.concurrent.atomic.AtomicReferenceArray; public class GFG { public static void main(String[] args) { // create an atomic reference array object // which stores String. AtomicReferenceArray<String> array = new AtomicReferenceArray<String>(5); // set some value in array array.set(0, "GEEKS"); array.set(1, "FOR"); array.set(2, "GEEKS"); // get and print the value using getAcquire method for (int i = 0; i < 2; i++) { String value = array.getAcquire(i); System.out.println("value at " + i + " = " + value); } } } Output: Reference: https://docs.oracle.com/javase/10/docs/api/java/util/concurrent/atomic/AtomicReferenceArray.html#getAcquire(int) Comment More infoAdvertise with us Next Article AtomicReferenceArray getAcquire() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Java-util-concurrent-atomic package Java-AtomicReferenceArray Practice Tags : Java Similar Reads AtomicReference getAcquire() method in Java with Examples The getAcquire() method of a AtomicReference class is used to return the value of this AtomicReference object with memory ordering effects on getting variable is compatible with memory_order_acquire ordering. Syntax: public final V getAcquire() Parameters: This method accepts nothing.Return value: T 1 min read AtomicReferenceArray getOpaque() method in Java with Examples The getOpaque() method of a AtomicReferenceArray class is used to return the value of the element at index i for this AtomicReferenceArray object with memory effects as specified by VarHandle.getOpaque(java.lang.Object...). This VarHandle.getOpaque(java.lang.Object...) method handles operation with 2 min read AtomicReferenceArray get() method in Java with Examples The get() method of a AtomicReferenceArray class is used to return the value of the element at index i for this AtomicReferenceArray object with memory semantics of reading as if the variable of index was declared volatile type of variable. Syntax: public final E get(int i) Parameters: This method a 2 min read AtomicReferenceArray getPlain() method in Java with Examples The getPlain() method of a AtomicReferenceArray class is used to return the value of the element at index i for this AtomicReferenceArray object with memory semantics of reading as if the variable was declared non-volatile.Syntax: public final E getPlain(int i) Parameters: This method accepts the in 2 min read AtomicReferenceArray getAndUpdate() method in Java with Examples The getAndUpdate() method of a AtomicReferenceArray class is used to atomically updates which updates the current value of the AtomicReferenceArray by applying the specified updateFunction operation on the current value. It takes an object of updateFunction interface as its parameter and applies the 2 min read AtomicReferenceArray getAndSet() method in Java with Examples The getAndSet() method of a AtomicReferenceArray class is used to atomically sets the value of index i of AtomicReferenceArray object to newValue which is passed as parameter and returns the old value of the AtomicReferenceArray object, with memory effects as specified by VarHandle.getAndSet(java.la 2 min read AtomicReference getOpaque() method in Java with Examples The getOpaque() method of a AtomicReference class is used to return the current value of AtomicReference object, with memory effects as specified by VarHandle.getOpaque(java.lang.Object...). This VarHandle.getOpaque(java.lang.Object...) method handles operation with no assurance of memory ordering e 1 min read AtomicReferenceArray getAndAccumulate() method in Java with Examples The getAndAccumulate() method of a AtomicReferenceArray class is used to atomically updates the element at index i of AtomicReferenceArray with the results of applying the given accumulatorFunction to the current and given values and returns the previous value. The accumulatorFunction should be side 2 min read AtomicReference get() method in Java with Examples The get() method of a AtomicReference class is used to return the value of this AtomicReference object with memory semantics of reading as if the variable was declared volatile type of variable. Syntax: public final V get() Parameters: This method accepts nothing. Return value: This method returns c 1 min read AtomicReference getPlain() method in Java with Examples The getPlain() method of a AtomicReference class is used to return the current value of AtomicReference object, with memory semantics of reading as if the variable was declared non-volatile. Syntax: public final V getPlain() Parameters: This method accepts nothing. Return value: This method returns 1 min read Like