Java.util.concurrent.atomic.AtomicLong.get () es un método incorporado en Java que devuelve el valor actual que es de tipo fecha largo.
Sintaxis:
public final long get()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: la función devuelve el valor actual
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java program that demonstrates // the get() function import java.util.concurrent.atomic.AtomicLong; public class GFG { public static void main(String args[]) { // Initially value as 0 AtomicLong val = new AtomicLong(0); val.addAndGet(7); // Prints the updated value System.out.println("Previous value: " + val); // Gets the current value long res = val.get(); System.out.println("current value: " + res); } }
Producción:
Previous value: 7 current value: 7
Programa 2:
// Java program that demonstrates // the get() function import java.util.concurrent.atomic.AtomicLong; public class GFG { public static void main(String args[]) { // Initially value as 18 AtomicLong val = new AtomicLong(18); val.addAndGet(7); // Prints the updated value System.out.println("Previous value: " + val); // Gets the current value long res = val.get(); System.out.println("current value: " + res); } }
Producción:
Previous value: 25 current value: 25
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html#get–