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


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


Double類的longValue()方法是一種內置方法,可在類型轉換後很長時間返回由調用對象指定的值。

用法

DoubleObject.longValue()

參數:它不帶任何參數。


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

下麵是上述方法的實現。

代碼1:

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

輸出

1022

代碼2:

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

輸出

-1023


相關用法


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