Float类中的intValue()方法是Java中的一种内置方法,该方法在类型转换后将调用对象指定的值作为int返回。
用法:
public int intValue()
参数:该函数不接受任何参数。
返回值:它以int形式返回FloatObject的值。
以下程序说明了Java中的intValue()方法:
示例1:
// Java code to demonstrate
// Float intValue() method
class GFG {
public static void main(String[] args)
{
// Float value
Float a = 17.47f;
// wrapping the Float value
// in the wrapper class Float
Float b = new Float(a);
// intValue of the Float Object
int output = b.intValue();
// printing the output
System.out.println("Int value of "
+ b + " is : " + output);
}
}
输出:
Int value of 17.47 is : 17
示例2:
// Java code to demonstrate
// Float intValue() method
// Not a number
class GFG {
public static void main(String[] args)
{
// Float value
Float a = Float.NaN;
// wrapping the Float value
// in the wrapper class Float
Float b = new Float(a);
// intValue of the Float Object
int output = b.intValue();
// printing the output
System.out.println("Int value of "
+ b + " is : " + output);
}
}
输出:
Int value of NaN is : 0