The intValue() method of Double class is a built in method to return the value specified by the calling object as int after type casting.
Syntax:
DoubleObject.intValue()
Return Value: It return the value of DoubleObject as int.
Below programs illustrate intValue() method in Java:
Program 1:
class GFG {
public static void main(String[] args)
{
Double a = 17.47 ;
Double b = new Double(a);
int output = b.intValue();
System.out.println( "Int value of "
+ b + " is : " + output);
}
}
|
Output:
Int value of 17.47 is : 17
Program 2:
class GFG {
public static void main(String[] args)
{
String value = "54.1" ;
Double b = new Double(value);
int output = b.intValue();
System.out.println( "Int value of "
+ b + " is : " + output);
}
}
|
Output:
Int value of 54.1 is : 54
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
09 Oct, 2018
Like Article
Save Article