Open In App

DoubleAdder add() method in Java with Examples

Last Updated : 28 Jan, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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:
Output:
the current value is: 52.0
Program 2:
Output:
the current value is: 1.0
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#add-double-

Practice Tags :

Similar Reads