Java中的字节 floatValue() 方法及示例
Byte 类的floatValue()方法是Java中的一个内置方法,用于将此 Byte 对象的值作为浮点数返回。
句法
ByteObject.floatValue()
返回值:它以float形式返回 ByteObject 的值。
下面是Java中 floatValue() 方法的实现:
示例 1:
// Java code to demonstrate
// Byte floatValue() method
class GFG {
public static void main(String[] args)
{
// byte value
byte a = 17;
// wrapping the byte value
// in the wrapper class Byte
Byte b = new Byte(a);
// floatValue of the Byte Object
float output = b.floatValue();
// printing the output
System.out.println("Float value of "
+ a + " is : " + output);
}
}
输出:
Float value of 17 is : 17.0
示例 2:
// Java code to demonstrate
// Byte floatValue() method
class GFG {
public static void main(String[] args)
{
String value = "17";
// wrapping the byte value
// in the wrapper class Byte
Byte b = new Byte(value);
// floatValue of the Byte Object
float output = b.floatValue();
// printing the output
System.out.println("Float value of "
+ b + " is : " + output);
}
}
输出:
Float value of 17 is : 17.0