Groovy处理非常大的数字时抛出NumberformatException

时间:2018-06-24 21:06:49

标签: math groovy numberformatexception bignum

因此,在Intellij IDEA中使用groovy时,使用以下代码会出现异常:

def t = (100000G**100000000000G)

现在我知道这些数字是没有理智的人会想要计算的,但是出于发问和出于好奇的目的,为什么这会引发以下异常?

Exception in thread "main" java.lang.NumberFormatException
at java.math.BigDecimal.<init>(BigDecimal.java:494)
at java.math.BigDecimal.<init>(BigDecimal.java:383)
at java.math.BigDecimal.<init>(BigDecimal.java:806)
at java.math.BigDecimal.valueOf(BigDecimal.java:1274)
at org.codehaus.groovy.runtime.DefaultGroovyMethods.power(DefaultGroovyMethods.java:14303)
at org.codehaus.groovy.runtime.dgm$489.invoke(Unknown Source)
at org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite$PojoMetaMethodSiteNoUnwrapNoCoerce.invoke(PojoMetaMethodSite.java:274)
at org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite.call(PojoMetaMethodSite.java:56)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:47)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:116)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:128)
at dev.folling.code.Main.main(Main.groovy:11)

**替换为.power()不会对其进行任何更改。 该错误显然是由于某个时候出现非法字符引起的。我怀疑这可能是内存错误,尽管我不确定。

1 个答案:

答案 0 :(得分:2)

您可以尝试为代码创建一个断点,然后尝试深入研究它。

这将在幕后发生。

public static BigInteger power(BigInteger self, BigInteger exponent) {
    return exponent.signum() >= 0 && exponent.compareTo(BI_INT_MAX) <= 0?self.pow(exponent.intValue()):BigDecimal.valueOf(Math.pow(self.doubleValue(), exponent.doubleValue())).toBigInteger();
}

在运行过程中,它使用以下代码返回“ Infinity”作为返回:

Math.pow(self.doubleValue(), exponent.doubleValue())

然后BigDecimal将使用valueof将其转换为BigInteger

BigDecimal.valueOf("Infinity")

这就是为什么您会收到 NumberFormatException

的原因

Br,

蒂姆