DoubleAdder sumThenReset() method in Java with Examples
The java.DoubleAdder.sumThenReset() is an inbuilt method in java is equivalent to sum() then reset() method that is firstly the effective sum is calculated and then the value is reset to maintain the value zero. When the object of the class is created its initial value is zero.
Syntax:
public double sumThenReset()
Parameters: This method does not accepts any parameter.
Return Value: The method returns the sum.
Below programs illustrate the above method:
Program 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); } } |
the value after sum is: 52.0 the current value is: 0.0
Program 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); } } |
the value after sum is: 254.0 the current value is: 0.0
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#sumThenReset–
Recommended Posts:
- LongAdder sumThenReset() method in Java with Examples
- DoubleAdder sum() method in Java with Examples
- DoubleAdder add() method in Java with Examples
- DoubleAdder reset() method in Java with Examples
- DoubleAdder longValue() method in Java with Examples
- DoubleAdder toString() method in Java with Examples
- DoubleAdder floatValue() method in Java with Examples
- DoubleAdder doubleValue() method in Java with Examples
- DoubleAdder intValue() method in Java with Examples
- Java lang.Long.byteValue() method in Java with Examples
- Java.util.Collections.disjoint() Method in java with Examples
- Java.util.Collections.rotate() Method in Java with Examples
- Java lang.Long.numberOfLeadingZeros() method in Java with Examples
- Java lang.Long.lowestOneBit() method in Java with Examples
- Java lang.Long.builtcount() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.