Thursday, October 2, 2025
HomeLanguagesJavaDoubleAccumulator get() method in Java with Examples

DoubleAccumulator get() method in Java with Examples

The Java.DoubleAccumulator.get() method is an inbuilt method in Java that returns the current value in this DoubleAccumulator instance. It means it only returns the current value and does not takes any parameter. The return type is int.

Syntax:

public double get()

Parameters: The function does not accepts any parameter.

Return value: The method returns the current value of the DoubleAccumulator object.

Below programs illustrate the above method:

Program 1:




// Java program to demonstrate
// the get() 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(2);
        num.accumulate(10);
  
        // Gets current value
        double x = num.get();
  
        // Print after get operation
        System.out.println("Current value is: "
                           + x);
    }
}


Output:

Current value is: 12.0

Program 2:




// Java program to demonstrate
// the get() 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(24);
        num.accumulate(1);
  
        // Gets current value
        double x = num.get();
  
        // Print after get operation
        System.out.println("Current value is: "
                           + x);
    }
}


Output:

Current value is: 25.0
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11926 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7079 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS