Saturday, November 15, 2025
HomeLanguagesJavaDoubleAdder add() method in Java with Examples

DoubleAdder add() method in Java with Examples

The java.DoubleAdder.add() is an inbuilt method in java that adds the given value to the previous or initial value. When the object of the class is created its initial value is zero.

Syntax:

public void add(double x)

Parameters: This method accepts a single parameter x that specifies the value to be added.

Return Value: The method returns the new value after the addition operation.

Below programs illustrate the above function:

Program 1:




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


Output:

the current value is: 52.0

Program 2:




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


Output:

the current value is: 1.0

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#add-double-

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS