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
相关用法
- Java Float longValue()用法及代码示例
- Java LongAdder longValue()用法及代码示例
- Java AtomicInteger longValue()用法及代码示例
- Java DoubleAccumulator longValue()用法及代码示例
- Java AtomicLong longValue()用法及代码示例
- Java LongAccumulator longValue()用法及代码示例
- Java Byte longValue()用法及代码示例
- Java Number.longValue()用法及代码示例
- Java DoubleAdder longValue()用法及代码示例
- Java Doubles.indexOf(double[] array, double target)用法及代码示例
- Java Doubles.indexOf(double[] array, double[] target)用法及代码示例
- Java Double floatValue()用法及代码示例
- Java Double byteValue()用法及代码示例
- Java Double.equals()用法及代码示例
- Java DoubleStream.Builder add(double t)用法及代码示例
注:本文由纯净天空筛选整理自ShivamKD大神的英文原创作品 Double longValue() in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。