當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Number floatValue()用法及代碼示例


Number類floatValue()方法

  • floatValue() 方法可在java.lang包。
  • floatValue() 方法用於返回此 Number 對象表示的值轉換為 float 類型(通過強製轉換),它可能涉及舍入或截斷。
  • floatValue() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • floatValue() 方法從 Number 轉換為 float 時不會拋出異常。

用法:

    public abstract float floatValue();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是float,它返回一個由這個 Number 對象表示的轉換後的(從 Number 類型到浮點型)值。

例:

// Java program to demonstrate the example 
// of floatValue() method of Number class

public class FloatValueOfNumberClass {
    public static void main(String[] args) {
        // Variables initialization
        int i1 = 10;
        double d1 = 20.62;

        // It returns float value denoted by this object
        // and converted to a float by calling i.floatValue()
        Integer i = new Integer(i1);

        // Display i result
        System.out.println("i.floatValue():" + i.floatValue());

        // It returns float value denoted by this object
        // and converted to a float by calling d.floatValue()
        Double d = new Double(d1);

        // Display d result
        System.out.println("d.floatValue():" + d.floatValue());
    }
}

輸出

i.floatValue():10.0
d.floatValue():20.62


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Number floatValue() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。