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


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


Long類floatValue()方法

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

用法:

    public float floatValue();

參數:

  • 它不接受任何參數。

返回值:

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

例:

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

public class FloatValueOfLongClass {
    public static void main(String[] args) {
        // Variables initialization
        long l1 = 30;
        long l2 = 40;;

        // It returns a long value denoted by this Long ob1 object
        // and converted to a float by calling ob1.floatValue()
        Long ob1 = new Long(l1);

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

        // It returns a long value denoted by this Long ob2 object
        // and converted to a float by calling ob2.floatValue()
        Long ob2 = new Long(l2);

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

輸出

ob1.floatValue():30.0
ob2.floatValue():40.0


相關用法


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