Método DoubleAccumulator getThenReset() en Java con ejemplos

Java.DoubleAccumulator.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. El valor de reinicio es cero. El tipo de retorno es int.

Sintaxis:

public double getThenReset()

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

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

Los siguientes programas ilustran el método anterior:

Programa 1:

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

Old value is: 52.0
Current value is: 0.0

Programa 2:

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

Old value is: 75.0
Current value is: 0.0

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 *