The java.DoubleAdder.doubleValue() is an inbuilt method in java that is equivalent to the method sum(), that is it returns current sum value. When the object of the class is created its initial value is zero.
Syntax:
public double doubleValue()
Parameters: The method does not accepts any parameter.
Return value: This method returns the current sum.
Below programs illustrate the above method:
Program 1:
import java.lang.*;
import java.util.concurrent.atomic.DoubleAdder;
public class GFG {
public static void main(String args[])
{
DoubleAdder num = new DoubleAdder();
num.add( 42 );
num.add( 10 );
num.doubleValue();
System.out.println( "the value after doubleValue() is: " + num);
}
}
|
Output:
the value after doubleValue() is: 52.0
Program 2:
import java.lang.*;
import java.util.concurrent.atomic.DoubleAdder;
public class GFG {
public static void main(String args[])
{
DoubleAdder num = new DoubleAdder();
num.add( 72 );
num.doubleValue();
System.out.println( "the value after doubleValue() is: " + num);
}
}
|
Output:
the value after doubleValue() is: 72.0
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#doubleValue–