Saturday, January 31, 2026
HomeLanguagesJavaDoubleAdder reset() method in Java with Examples

DoubleAdder reset() method in Java with Examples

The java.DoubleAdder.reset() is an inbuilt method in java that resets variables maintaining the sum to zero. When the object of the class is created its initial value is zero.

Syntax:

public void reset()

Parameters: This method does not accepts any parameter.

Return Value: The method returns the reset value.

Below programs illustrate the above method:

Program 1:




// Program to demonstrate the reset() 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);
  
        // reset operation on variable num
        num.reset();
  
        // Print after add operation
        System.out.println(" the current value is: " + num);
    }
}


Output:

the current value is: 0.0

Program 2:




// Program to demonstrate the reset() 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(10);
  
        // reset operation on variable num
        num.reset();
  
        // Print after add operation
        System.out.println(" the current value is: " + num);
    }
}


Output:

the current value is: 0.0

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#reset–

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
123 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS