The java.lang.Number.intValue() is an inbuilt method in java that returns the value of the specified number as an int. This may involve rounding or truncation.
Syntax:
public abstract int intValue()
Parameters: This method does not accepts any parameter.
Return value: This method returns the numeric value represented by this object after conversion to type int.
Below programs illustrate the Number.intValue() method:
Program 1:
public class gfg {
public static void main(String[] args)
{
Float x = new Float(456f);
System.out.println(x.intValue());
Double y = new Double( 20 );
System.out.println(y.intValue());
}
}
|
Program 2:
public class gfg {
public static void main(String[] args)
{
Float x = new Float(56f);
System.out.println(x.intValue());
Double y = new Double( 76.2 );
System.out.println(y.intValue());
}
}
|