java.util.concurrent.atomic.AtomicInteger.getAndAdd() es un método incorporado en java que agrega el valor dado al valor actual y devuelve el valor antes de la actualización que es de tipo de datos int .
Sintaxis:
public final int getAndAdd(int val)
Parámetros: la función acepta un solo parámetro obligatorio val que especifica el valor que se agregará al valor actual.
Valor devuelto: la función devuelve el valor antes de que se realice la suma al valor anterior.
El siguiente programa demuestra la función:
Programa 1:
// Java program that demonstrates // the getAndAdd() function import java.util.concurrent.atomic.AtomicInteger; public class GFG { public static void main(String args[]) { // Initially value as 0 AtomicInteger val = new AtomicInteger(0); // Adds 7 and gets the previous value int res = val.getAndAdd(7); // Prints the updated value System.out.println("Previous value: " + res); System.out.println("Current value: " + val); } }
Producción:
Previous value: 0 Current value: 7
Programa 2:
// Java program that demonstrates // the getAndAdd() function import java.util.concurrent.atomic.AtomicInteger; public class GFG { public static void main(String args[]) { // Initially value as 18 AtomicInteger val = new AtomicInteger(18); // Prints the updated value System.out.println("Previous value: " + val); // Adds 8 and gets the previous value int res = val.getAndAdd(8); // Prints the updated value System.out.println("Previous value: " + res); System.out.println("Current value: " + val); } }
Producción:
Previous value: 18 Previous value: 18 Current value: 26
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html#getAndAdd-int-