Método AtomicIntegerArray getAndDecrement() en Java con ejemplos

Java.util.concurrent.atomic.AtomicIntegerArray.getAndDecrement () es un método incorporado en Java que disminuye atómicamente el valor en un índice dado en uno. Este método toma el valor de índice de AtomicIntegerArray y devuelve el valor presente en ese índice y luego disminuye el valor en ese índice. La función getAndDecrement() es similar a decrementAndGet() pero la última función devuelve el valor después del decremento mientras que la primera devuelve el valor antes del decremento.

Sintaxis:

public final int getAndDecrement(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 antes de la operación de decremento en el índice que está en int .

Los siguientes programas ilustran el método anterior:
Programa 1:

// Java program that demonstrates
// the getAndDecrement() 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;
  
        // Decrementing the value at
        // idx applying getAndDecrement
        // and storing previous value
        int prev = arr.getAndDecrement(idx);
  
        // The previous value at idx
        System.out.println("Value at index " + idx
                           + " before decrement is "
                           + prev);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array after decrement : "
                           + arr);
    }
}
Producción:

The array : [1, 2, 3, 4, 5]
Value at index 3 before decrement is 4
The array after decrement : [1, 2, 3, 3, 5]

Programa 2:

// Java program that demonstrates
// the getAndDecrement() function
  
import java.util.concurrent.atomic.AtomicIntegerArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        int a[] = { 10, 20, 30, 40, 50 };
  
        // 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;
  
        // Decrementing the value at
        // idx applying getAndDecrement
        // and storing previous value
        int prev = arr.getAndDecrement(idx);
  
        // The previous value at idx
        System.out.println("Value at index " + idx
                           + " before decrement is "
                           + prev);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array after decrement : "
                           + arr);
    }
}
Producción:

The array : [10, 20, 30, 40, 50]
Value at index 0 before decrement is 10
The array after decrement : [9, 20, 30, 40, 50]

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

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *