El método java.DoubleAdder.sumThenReset() es un método incorporado en Java que es equivalente al método sum() y luego reset() que es, en primer lugar, se calcula la suma efectiva y luego se restablece el valor para mantener el valor cero. Cuando se crea el objeto de la clase su valor inicial es cero.
Sintaxis:
public double sumThenReset()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: el método devuelve la suma.
Los siguientes programas ilustran el método anterior:
Programa 1 :
// Program to demonstrate the sumThenReset() method import java.lang.*; import java.util.concurrent.atomic.DoubleAdder; public class GFG { public static void main(String args[]) { DoubleAdder num = new DoubleAdder(); // add operation on num num.add(42); num.add(10); // sum operation on num num.sum(); // Print after sum operation System.out.println(" the value after sum is: " + num); // sumThenReset operation on variable num num.sumThenReset(); // Print after sumThenReset operation System.out.println("the current value is: " + num); } }
Producción:
the value after sum is: 52.0 the current value is: 0.0
Programa 2 :
// Program to demonstrate the sumThenReset() method import java.lang.*; import java.util.concurrent.atomic.DoubleAdder; public class GFG { public static void main(String args[]) { DoubleAdder num = new DoubleAdder(); // add operation on num num.add(254); // sum operation on num num.sum(); // Print after sum operation System.out.println(" the value after sum is: " + num); // sumThenReset operation on variable num num.sumThenReset(); // Print after sumThenReset operation System.out.println("the current value is: " + num); } }
Producción:
the value after sum is: 254.0 the current value is: 0.0
Referencia : https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#sumThenReset–
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