Monday, July 6, 2026
HomeLanguagesJavaDoubleAdder toString() method in Java with Examples

DoubleAdder toString() method in Java with Examples

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:




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




// Program to demonstrate the toString() 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(402);
  
        // sum operation on num
        num.sum();
  
        // Print after sum operation
        System.out.println(" the value after sum() is: " + num);
  
        // toString operation on variable num
        num.toString();
  
        // Print after toString operation
        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–

RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7263 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS