Tuesday, July 7, 2026
HomeLanguagesJavaDoubleAdder longValue() method in Java with Examples

DoubleAdder longValue() method in Java with Examples

The java.DoubleAdder.longValue() is an inbuilt method in java that returns the sum() as a long after a narrowing primitive conversion. When the object of the class is created its initial value is zero.

Syntax:

public long longValue()

Parameters:Return value: This method returns the numeric value represented by this object after conversion to long data type.

Below programs illustrate the above method:

Program 1:




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


Output:

the value after longValue() is: 52.0

Program 2:




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


Output:

the value after longValue() is: 62.0

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

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

4 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
6968 POSTS0 COMMENTS