Open In App
Related Articles

DoubleAccumulator toString() method in Java with Examples

Improve Article
Improve
Save Article
Save
Like Article
Like

The Java.DoubleAccumulator.toString() is an inbuilt method in java that returns the String representation of the current value. Numeric value is explicitly converted to a string where the initial datatype is double.

Syntax:

public String toString()

Parameters: The method does not accepts any parameter.

Return Value: The method returns the string representation of the current value.

Below programs illustrate the above method:

Program 1:




// Java program to demonstrate
// the toString() method
  
import java.lang.*;
import java.util.concurrent.atomic.DoubleAccumulator;
  
public class GFG {
    public static void main(String args[])
    {
        DoubleAccumulator num
            = new DoubleAccumulator(
                Double::sum, 0L);
  
        // accumulate operation on num
        num.accumulate(75);
        num.accumulate(1);
  
        // before toString the value is
        System.out.println("DoubleAccumulator: "
                           + num.get());
  
        // Print String representation
        System.out.println("String representation: "
                           + num.toString());
    }
}


Output:

DoubleAccumulator: 52.0
String representation: 52.0

Program 2:





Output:

DoubleAccumulator: 76.0
String representation: 76.0

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 : 29 Jan, 2019
Like Article
Save Article
Similar Reads
Related Tutorials