Sunday, February 15, 2026
HomeLanguagesJavaDoubleAdder sumThenReset() method in Java with Examples

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


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–

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32505 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6880 POSTS0 COMMENTS
Nicole Veronica
12003 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12098 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6966 POSTS0 COMMENTS
Umr Jansen
6954 POSTS0 COMMENTS