javaint接收float_Java Float intValue()用法及代码示例

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值