Saturday, July 4, 2026
HomeLanguagesJavaLongAccumulator toString() method in Java with Examples

LongAccumulator toString() method in Java with Examples

The java.LongAccumulator.toString() is an inbuilt method in java that returns the String representation of the current value of the LongAccumulator instance.

Syntax:

public String toString()

Parameters: This method does not accepts any parameter.

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

Below programs illustrate the above method:

Program 1:




// Program to demonstrate the toString() method
  
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
  
public class GFG {
    public static void main(String args[])
    {
        LongAccumulator num = new LongAccumulator(Long::sum, 0L);
  
        // accumulate operation on num
        num.accumulate(42);
        num.accumulate(10);
  
        num.get();
        // before toString the value is
        System.out.println(" the old value is: " + num);
        ;
  
        // toStrings current value
        num.toString();
  
        // Print after toString operation
        System.out.println(" the current value is: " + num);
    }
}


Output:

the old value is: 52
 the current value is: 52

Program 2:




// program to demonstrate the toString() method
  
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
  
public class GFG {
    public static void main(String args[])
    {
        LongAccumulator num = new LongAccumulator(Long::sum, 0L);
  
        // accumulate operation on num
        num.accumulate(5);
        num.accumulate(10);
  
        num.get();
        // before toString the value is
        System.out.println(" the old value is: " + num);
  
        // toStrings current value
        num.toString();
  
        // Print after toString operation
        System.out.println(" the current value is: " + num);
    }
}


Output:

the old value is: 15
 the current value is: 15

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAccumulator.html#toString–

RELATED ARTICLES

1 COMMENT

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
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS