Open In App

AtomicIntegerArray incrementAndGet() method in Java with Examples

Last Updated : 27 Feb, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The Java.util.concurrent.atomic.AtomicIntegerArray.incrementAndGet() is an inbuilt method in Java that atomically increments the value at any index of an AtomicIntegerArray by one. The method takes the index value of the AtomicIntegerArray as the parameter, increments the value at that index and returns the value after the increment. The function incrementAndGet() is similar to the getAndIncrement() function but the former returns the value after the increment while the latter returns the value before the increment operation.

Syntax:

public final int incrementAndGet(int i)

Parameters: The function accepts a single parameter i which is the index where increment by one operation is performed.

Return value: The function returns the value after the increment operation which is in Integer.

Below programs illustrate the above method:

Program 1:




// Java program that demonstrates
// the incrementAndGet() function
  
import java.util.concurrent.atomic.AtomicIntegerArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        int a[] = { 1, 2, 3, 4, 5 };
  
        // Initializing an AtomicIntegerArray with array a
        AtomicIntegerArray arr = new AtomicIntegerArray(a);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array : " + arr);
  
        // Index where operation is performed
        int idx = 3;
  
        // Updating the value at
        // idx applying incrementAndGet
        arr.incrementAndGet(idx);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array after update : "
                           + arr);
    }
}


Output:

The array : [1, 2, 3, 4, 5]
The array after update : [1, 2, 3, 5, 5]

Program 2:




// Java program that demonstrates
// the incrementAndGet() function
  
import java.util.concurrent.atomic.AtomicIntegerArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        int a[] = { 11, 12, 13, 14, 15 };
  
        // Initializing an AtomicIntegerArray with array a
        AtomicIntegerArray arr = new AtomicIntegerArray(a);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array : " + arr);
  
        // Index where operation is performed
        int idx = 0;
  
        // Updating the value at
        // idx applying incrementAndGet
        arr.incrementAndGet(idx);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array after update : "
                           + arr);
    }
}


Output:

The array : [11, 12, 13, 14, 15]
The array after update : [12, 12, 13, 14, 15]

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#incrementAndGet(int)



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads