Java.util.concurrent.atomic.AtomicIntegerArray.accumulateAndGet () es un método incorporado en Java que actualiza atómicamente el elemento en el índice i con los resultados de aplicar la función dada a los valores actuales y dados, devolviendo el valor actualizado. La función no debe tener efectos secundarios, ya que se puede volver a aplicar cuando fallan los intentos de actualización debido a la contención entre subprocesos. La función se aplica con el valor actual en el índice i como primer argumento y la actualización dada como segundo argumento.
Sintaxis:
public final int AccumulateAndGet(int i, int x, IntBinaryOperator accumulatorFunction)
Parámetros: La función acepta tres parámetros:
Valor de retorno: la función devuelve el valor actualizado que está en Integer .
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java program that demonstrates // the accumulateAndGet() function import java.util.concurrent.atomic.AtomicIntegerArray; import java.util.function.IntBinaryOperator; 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 update is to be made int idx = 4; // Value to make operation with value at idx int x = 5; // Declaring the accumulatorFunction IntBinaryOperator add = (u, v) -> u + v; // Updating the value at idx // applying accumulatorFunction arr.accumulateAndGet(idx, x, add); // 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, 4, 10]
Programa 2:
// Java program that demonstrates // the accumulateAndGet() function import java.util.concurrent.atomic.AtomicIntegerArray; import java.util.function.IntBinaryOperator; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 17, 22, 33, 44, 55 }; // Initializing an AtomicIntegerArray with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the AtomicIntegerArray System.out.println("The array : " + arr); // Index where update is to be made int idx = 0; // Value to make operation with value at idx int x = 6; // Declaring the accumulatorFunction IntBinaryOperator sub = (u, v) -> u - v; // Updating the value at idx // applying accumulatorFunction arr.accumulateAndGet(idx, x, sub); // Displaying the AtomicIntegerArray System.out.println("The array after update : " + arr); } }
The array : [17, 22, 33, 44, 55] The array after update : [11, 22, 33, 44, 55]