Byte類的floatValue()方法是Java中的一種內置方法,用於將這個Byte對象的值返回為float。
用法
ByteObject.floatValue()
返回值:它將ByteObject的值返回為float。
下麵是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
相關用法
- Java LongAccumulator floatValue()用法及代碼示例
- Java BigDecimal floatValue()用法及代碼示例
- Java DoubleAccumulator floatValue()用法及代碼示例
- Java DoubleAdder floatValue()用法及代碼示例
- Java AtomicInteger floatValue()用法及代碼示例
- Java LongAdder floatValue()用法及代碼示例
- Java AtomicLong floatValue()用法及代碼示例
- Java Number.floatValue()用法及代碼示例
- Java Bytes.indexOf(byte[] array, byte target)用法及代碼示例
- Java Bytes.indexOf(byte[] array, byte[] target)用法及代碼示例
- Java Double floatValue()用法及代碼示例
- Java Float floatValue()用法及代碼示例
- Java Byte intValue()用法及代碼示例
- Java Byte hashCode()用法及代碼示例
- Java Byte equals()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Byte floatValue() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。