Java.util.concurrent.atomic.AtomicIntegerArray.decrementAndGet () es un método incorporado en Java que decrementa atómicamente en uno el elemento en un índice dado. Este método toma el valor del índice y el valor que se agregará como parámetros y devuelve el valor actualizado en este índice.
Sintaxis:
public final int decrementAndGet(int i)
Parámetros: La función acepta un único parámetro i que es el índice donde se realiza el decremento en una operación.
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
// Java program that demonstrates // the decrementAndGet() 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 decrementAndGet arr.decrementAndGet(idx); // Displaying the AtomicIntegerArray System.out.println("The array after update : " + arr); } }
Producción:
The array : [1, 2, 3, 4, 5] The array after update : [1, 2, 3, 3, 5]
Programa 2:
Java
// Java program that demonstrates // the decrementAndGet() 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 = 0; // Updating the value at // idx applying decrementAndGet arr.decrementAndGet(idx); // Displaying the AtomicIntegerArray System.out.println("The array after update : " + arr); } }
Producción:
The array : [1, 2, 3, 4, 5] The array after update : [0, 2, 3, 4, 5]