我正在尝试从标准输入中读取一些非常大的数字,并将它们加在一起。
但是,要添加到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)
吗?