Java Byte floatValue()方法
java.lang.Byte.floatValue() 返回此字节为float的值。
1 语法
public float floatValue()
2 参数
无
3 返回值
此方法将返回该对象转换后表示为float类型的数值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Byte floatValue()方法
*/
import java.lang.*;
public class ByteDemo {
public static void main(String[] args) {
// create 2 Byte objects b1, b2
Byte b1, b2;
// create 2 float primitives f1, f2
float f1, f2;
// assign values to b1, b2
b1 = new Byte("100");
b2 = new Byte("-10");
// assign float values of b1, b2 to f1, f2
f1 = b1.floatValue();
f2 = b2.floatValue();
String str1 = "float value of Byte " + b1 + " is " + f1;
String str2 = "float value of Byte " + b2 + " is " + f2;
// print f1, f2 values
System.out.println( str1 );
System.out.println( str2 );
}
}
输出结果为:
float value of Byte 100 is 100.0
float value of Byte -10 is -10.0
热门文章
优秀文章