Método LongAccumulator getThenReset() en Java con ejemplos

java.LongAccumulator.getThenReset () es un método incorporado en java que tiene un efecto equivalente a get() seguido de reset(). En primer lugar, obtiene el valor actual y luego restablece el valor.

Sintaxis:

public long getThenReset()

Parámetros: Este método no acepta ningún parámetro.

Valor devuelto: este método devuelve el valor antes del reinicio.

Los siguientes programas ilustran el método anterior:

Programa 1 :

// Program to demonstrate the getThenReset() method
  
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
  
public class GFG {
    public static void main(String args[])
    {
        LongAccumulator num = new LongAccumulator(Long::sum, 0L);
  
        // accumulate operation on num
        num.accumulate(42);
        num.accumulate(10);
  
        num.get();
        // before getThenReset the value is
        System.out.println(" the old value is: " + num);
        ;
  
        // getThenResets current value
        num.getThenReset();
  
        // Print after getThenReset operation
        System.out.println(" the current value is: " + num);
    }
}
Producción:

the old value is: 52
 the current value is: 0

Programa 2 :

// Program to demonstrate the getThenReset() method
  
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
  
public class GFG {
    public static void main(String args[])
    {
        LongAccumulator num = new LongAccumulator(Long::sum, 0L);
  
        // accumulate operation on num
        num.accumulate(2);
        num.accumulate(1);
  
        num.get();
        // before getThenReset the value is
        System.out.println(" the old value is: " + num);
          
  
        // getThenResets current value
        num.getThenReset();
  
        // Print after getThenReset operation
        System.out.println(" the current value is: " + num);
    }
}
Producción:

the old value is: 3
the current value is: 0

Referencia : https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAccumulator.html#getThenReset–

Publicación traducida automáticamente

Artículo escrito por Twinkl Bajaj 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 *