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


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


Number類doubleValue()方法

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

用法:

    public abstract double doubleValue();

參數:

  • 它不接受任何參數。

返回值:

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

例:

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

public class DoubleValueOfNumberClass {
    public static void main(String[] args) {
        // Variables initialization
        int i1 = 10;
        float f1 = 20.62f;

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

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

        // It returns double value denoted by this object
        // and converted to a double by calling f.doubleValue()
        Float f = new Float(f1);

        // Display f result
        System.out.println("f.doubleValue():" + f.doubleValue());
    }
}

輸出

i.doubleValue():10.0
f.doubleValue():20.6200008392334


相關用法


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