Java中的浮点 intValue() 方法及示例
Float Class中的intValue()方法是Java中的内置方法,它在类型转换后将调用对象指定的值返回为 int。
句法:
public int intValue()
参数:该函数不接受任何参数。
返回值:它将 FloatObject 的值返回为int 。
下面的程序说明了Java中的intValue()方法:
方案一:
// 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
方案二:
// 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
参考: https: Java/lang/Float.html#intValue()