java.lang.Number.floatValue()方法實例
java.lang.Number.floatValue() 方法返回指定數為float的值。這可能會涉及到舍入或截斷。
聲明
以下是java.lang.Number.floatValue()方法的聲明
public abstract float floatValue()
參數
-
NA
返回值
此方法返回轉換後該對象表示為float類型的數值。
異常
-
NA
例子
下麵的例子顯示lang.Number.floatValue()方法的使用。
package com.yiibai; public class NumberDemo { public static void main(String[] args) { // get a number as integer Integer x = new Integer(123456); // get a number as double Double y = new Double(9876); // print their value as float System.out.println("x as integer:" + x + ", x as float:" + x.floatValue()); System.out.println("y as double:" + y + ", y as float:" + y.floatValue()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
x as integer:123456, x as float:123456.0 y as double:9876.0, y as float:9876.0