gpt4 book ai didi

java - 循环 BigInteger 的有效方法

转载 作者:行者123 更新时间:2023-12-02 11:59:17 24 4
gpt4 key购买 nike

我正在像这样循环 BigInteger:

BigInteger i = new BigInteger(Long.MAX_VALUE + "");
BigInteger end = i.add(new BigInteger("10"));

// Display results
for (i = new BigInteger(Long.MAX_VALUE + "");
i.compareTo(end) <= 0;
i = i.add(new BigInteger("1"))) {
System.out.println(i.multiply(i));
}

由于内存使用量太大,因为每个循环都会创建新的 BigInteger 对象,而不是仅使用 ++ 增加值。

有没有办法增加值而不是每次都创建新对象?

最佳答案

好吧,您可以使用BigInteger.valueOf(long)来避免解析String。您可以使用 BigInteger.ONE,而不是在每次迭代时重新创建 1。就像,

BigInteger end = BigInteger.valueOf(Long.MAX_VALUE).add(BigInteger.valueOf(10));
// Display results
for (BigInteger i = BigInteger.valueOf(Long.MAX_VALUE); i.compareTo(end) <= 0;
i = i.add(BigInteger.ONE)) {
System.out.println(i.multiply(i));
}

关于java - 循环 BigInteger 的有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47384241/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com