java.lang.Integer.floatValue() 方法在加宽基元转换后返回此 Integer 的值作为浮点数.
语法
public float floatValue()
参数
无需参数。
返回值
返回转换为 float 类型后该对象表示的数值。
异常
无。
示例:
在下面的示例中,java.lang.Integer.floatValue() 方法在转换为 float 类型后返回一个 Integer 对象。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建Integer对象
Integer val1 = 25;
Integer val2 = -25;
//打印Integer对象的floatValue
System.out.println("floatValue of the val1 is: " + val1.floatValue());
System.out.println("floatValue of the val2 is: " + val2.floatValue());
}
}
上面的代码将是:
floatValue of the val1 is: 25.0
floatValue of the val2 is: -25.0