java.math.BigInteger.doubleValue()将此BigInteger转换为双精度值。如果此函数返回的值太大而无法表示为两倍,则将视情况将其转换为Double.NEGATIVE_INFINITY或Double.POSITIVE_INFINITY。此转换有可能会丢失有关BigInteger值的精度的信息。
用法:
public double doubleValue()
返回值:该方法返回一个double值,该值表示此BigInteger的double值。
例子:
Input: BigInteger1=32145 Output: 32145.0 Explanation: BigInteger1.doubleValue()=32145.0. Input: BigInteger1=32145535361361525377 Output: 3.2145535E19 Explanation: BigInteger1.doubleValue()=3.2145535E19. This BigInteger is too big for a magnitude to represent as a double then it will be converted to Double.NEGATIVE_INFINITY or Double.POSITIVE_INFINITY as appropriate.
下面的程序说明BigInteger类的doubleValue()方法:
示例1:
// Java program to demonstrate doubleValue() method of BigInteger
import java.math.BigInteger;
public class GFG {
public static void main(String[] args)
{
// Creating 2 BigInteger objects
BigInteger b1, b2;
b1 = new BigInteger("32145");
b2 = new BigInteger("7613721");
// apply doubleValue() method
double doubleValueOfb1 = b1.doubleValue();
double doubleValueOfb2 = b2.doubleValue();
// print doubleValue
System.out.println("doubleValue of " + b1 + " : " + doubleValueOfb1);
System.out.println("doubleValue of " + b2 + " : " + doubleValueOfb2);
}
}
输出:
doubleValue of 32145 : 32145.0 doubleValue of 7613721 : 7613721.0
示例2:当返回的double值太大时,其大小不能表示为double。
// Java program to demonstrate doubleValue() method of BigInteger
import java.math.BigInteger;
public class GFG {
public static void main(String[] args)
{
// Creating 2 BigInteger objects
BigInteger b1, b2;
b1 = new BigInteger("32145535361361525377");
b2 = new BigInteger("7613721535372632367351");
// apply doubleValue() method
double doubleValueOfb1 = b1.doubleValue();
double doubleValueOfb2 = b2.doubleValue();
// print doubleValue
System.out.println("doubleValue of " + b1 + " : " + doubleValueOfb1);
System.out.println("doubleValue of " + b2 + " : " + doubleValueOfb2);
}
}
输出:
doubleValue of 32145535361361525377 : 3.2145535361361527E19 doubleValue of 7613721535372632367351 : 7.613721535372632E21
参考: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#doubleValue()
相关用法
- Java BigDecimal doubleValue()用法及代码示例
- Java Integer doubleValue()用法及代码示例
- Java DoubleAccumulator doubleValue()用法及代码示例
- Java Byte doubleValue()用法及代码示例
- Java Float doubleValue()用法及代码示例
- Java LongAdder doubleValue()用法及代码示例
- Java AtomicLong doubleValue()用法及代码示例
- Java AtomicInteger doubleValue()用法及代码示例
- Java LongAccumulator doubleValue()用法及代码示例
- Java Number.doubleValue()用法及代码示例
- Java Short doubleValue()用法及代码示例
- Java Double doubleValue()用法及代码示例
- Java DoubleAdder doubleValue()用法及代码示例
- Java BigInteger xor()用法及代码示例
- Java BigInteger and()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 BigInteger doubleValue() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。