1.7976931348623157E308 (Double.MAX_VALUE) 下的参数的解决方案,但支持数百万位数字的结果:
由于 double 支持最多 MAX_VALUE 的数字(例如,double 中的 100!如下所示:9.332621544394415E157),因此使用 BigDecimal.doubleValue() 没有问题。但是你不应该只做Math.pow(double,double),因为如果结果大于MAX_VALUE你只会得到无穷大。SO:使用公式 X^(A+B)=X^A*X^B 将计算分为两个幂,大,使用 BigDecimal.pow,和小(第二个参数的余数),使用 Math.pow,然后乘法。X将被复制到DOUBLE - 确保它不大于MAX_VALUE,A将是INT(最大2147483647但BigDecimal.pow无论如何都不支持超过十亿的整数),B将是双精度,始终小于1。通过这种方式,您可以执行以下操作(忽略我的私有常量等):
int signOf2 = n2.signum();
try {
// Perform X^(A+B)=X^A*X^B (B = remainder)
double dn1 = n1.doubleValue();
// Compare the same row of digits according to context
if (!CalculatorUtils.isEqual(n1, dn1))
throw new Exception(); // Cannot convert n1 to double
n2 = n2.multiply(new BigDecimal(signOf2)); // n2 is now positive
BigDecimal remainderOf2 = n2.remainder(BigDecimal.ONE);
BigDecimal n2IntPart = n2.subtract(remainderOf2);
// Calculate big part of the power using context -
// bigger range and performance but lower accuracy
BigDecimal intPow = n1.pow(n2IntPart.intValueExact(),
CalculatorConstants.DEFAULT_CONTEXT);
BigDecimal doublePow =
new BigDecimal(Math.pow(dn1, remainderOf2.doubleValue()));
result = intPow.multiply(doublePow);
} catch (Exception e) {
if (e instanceof CalculatorException)
throw (CalculatorException) e;
throw new CalculatorException(
CalculatorConstants.Errors.UNSUPPORTED_NUMBER_ +
"power!");
}
// Fix negative power
if (signOf2 == -1)
result = BigDecimal.ONE.divide(result, CalculatorConstants.BIG_SCALE,
RoundingMode.HALF_UP);
结果示例:
50!^10! = 12.50911317862076252364259*10^233996181
50!^0.06 = 7395.788659356498101260513