Friday, June 12, 2026
HomeLanguagesJavaDoubleAccumulator longValue() method in Java with Examples

DoubleAccumulator longValue() method in Java with Examples

The Java.DoubleAccumulator.longValue() is an inbuilt method in java that returns the current value as a long after a narrowing primitive conversion. It means the initial datatype is double which is explicitly converted into type long.

Syntax:

public long longValue()

Parameters: The method does not accepts any parameter.

Return value: The method returns the current value as a long after a narrowing primitive conversion.

PBelow programs illustrate the above method:

Program 1:




// Java program to demonstrate the
// longValue() 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(42);
        num.accumulate(10);
  
        // Print before longValue operation
        System.out.println("Old value is: "
                           + num);
  
        // Print after longValue operation
        System.out.println("Current long value is: "
                           + num.floatValue());
    }
}


Output:

Old value is: 52.0
Current long value is: 52.0

Program 2:




// Java program to demonstrate the
// longValue() 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(26);
        num.accumulate(45);
  
        // Print before longValue operation
        System.out.println("Old value is: "
                           + num);
  
        // Print after longValue operation
        System.out.println("Current long value is: "
                           + num.floatValue());
    }
}


Output:

Old value is: 71.0
Current long value is: 71.0
RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS