我正在尝试从标准输入中读取一些非常大的数字并将它们加在一起。
但是,要添加到 BigInteger,我需要使用BigInteger.valueOf(long);
:
private BigInteger sum = BigInteger.valueOf(0);
private void sum(String newNumber) {
// BigInteger is immutable, reassign the variable:
sum = sum.add(BigInteger.valueOf(Long.parseLong(newNumber)));
}
这工作正常,但作为BigInteger.valueOf()
唯一需要 a long
,我不能添加大于long
最大值(9223372036854775807)的数字。
每当我尝试添加 9223372036854775808 或更多时,我都会收到 NumberFormatException (这是完全可以预料的)。
有没有类似的东西BigInteger.parseBigInteger(String)
?