Thursday, September 4, 2025
HomeLanguagesJavaDouble longValue() in Java with Examples

Double longValue() in Java with Examples

The longValue() method of Double class is a built in method to return the value specified by the calling object as long after type casting.

Syntax

DoubleObject.longValue()

Parameters : It takes no parameters.

Return type : It returns an long value i.e. the type casted value of the DoubleObject.

Below is the implementation of the above method.

Code 1 :




// Java Code to implement 
// longValue() method of Double class
class GFG {
    // Driver method
    public static void main(String[] args)
    {
  
        // creating a Double object
        Double d = new Double(1022);
  
        // longValue() method of Double class
        // typecast the value
        long output = d.longValue();
  
        // printing the output
        System.out.println(output);
    }
}


Output

1022

Code 2 :




// Java Code to implement 
// longValue() method of Double class
class GFG {
    // Driver method
    public static void main(String[] args)
    {
  
        // creating a Double object
        Double d = new Double(-1023.23);
  
        // longValue() method of Double class
        // typecast the value
        long output = d.longValue();
  
        // printing the output
        System.out.println(output);
    }
}


Output

-1023
RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS