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


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


Double類的floatValue()方法是一種內置方法,用於在類型轉換後將調用對象指定的值作為float返回。

用法

DoubleObject.floatValue()

參數:它不帶任何參數。


返回類型:它返回一個浮點值,即DoubleObject的類型轉換值。

下麵是上述方法的實現。

代碼1:

// Java Code to implement  
// floatValue() method of Double class 
class GFG { 
  
    public static void main(String[] args) 
    { 
        // creating a Double object 
        Double d = new Double(23); 
  
        // floatValue() method of Double class 
        // typecast the value 
        float output = d.floatValue(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}

輸出

23.0

代碼2:

// Java Code to implement  
// floatValue() method  
// of Double class 
class GFG { 
  
    public static void main(String[] args) 
    { 
        // creating a Double object 
        Double d = new Double(-1023.15); 
  
        // floatValue() method of Double class 
        // typecast the value 
        float output = d.floatValue(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}

輸出

-1023.15


相關用法


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