The java.DoubleAdder.toString() is an inbuilt method in java that returns the String representation of the sum() method. When the object of the class is created its initial value is zero.
Syntax:
public String toString()
Parameters: This method does not accepts any parameter.
Return Value: The method returns the string representation of the 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.sum();
System.out.println( " the value after sum() is: " + num);
num.toString();
System.out.println( "the value after toString() is: " + num);
}
}
|
Output:
the value after sum() is: 52.0
the value after toString() 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( 402 );
num.sum();
System.out.println( " the value after sum() is: " + num);
num.toString();
System.out.println( "the value after toString() is: " + num);
}
}
|
Output:
the value after sum() is: 402.0
the value after toString() is: 402.0
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#toString–
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Jan, 2019
Like Article
Save Article