当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。