Last Updated : 11 Jul, 2025
The
longValue()method of
Doubleclass is a built in method to return the value specified by the calling object as long after type casting.
SyntaxDoubleObject.longValue()Parameters :
It takes no parameters.
Return type :It returns an
longvalue i.e. the type casted value of the DoubleObject.
Below is the implementation of the above method.
Code 1 : Java
// 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
1022Code 2 : Java
// 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
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4