Open In App

DoubleAdder sumThenReset() method in Java with Examples

Last Updated : 28 Jan, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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);
    }
}


Output:

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);
    }
}


Output:

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–



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads