gpt4 book ai didi

java - 为什么我不能用 BigInteger.ONE 替换 BigInteger ("1")?

转载 作者:行者123 更新时间:2023-12-01 06:49:04 33 4
gpt4 key购买 nike

我正在编写斐波那契程序。

public class ImperativeFibonacci implements Fibonacci {
public BigInteger fibonacci(int n) {
BigInteger nextFibonacci = new BigInteger("1"), currentFibonacci = new BigInteger("1");

for (int i = 2; i <= n; i++) {
nextFibonacci = currentFibonacci.add(nextFibonacci);
currentFibonacci = nextFibonacci.subtract(currentFibonacci);
}

return nextFibonacci;
}
}

我想将第 3 行替换为:

BigInteger nextFibonacci = new BigInteger.ONE, currentFibonacci = new BigInteger.ONE;

但是这不起作用。怎么了?

最佳答案

因为BigInteger.ONE是一个常量并且已经有一个实例。删除新的。喜欢

BigInteger nextFibonacci = BigInteger.ONE, currentFibonacci = BigInteger.ONE;

关于java - 为什么我不能用 BigInteger.ONE 替换 BigInteger ("1")?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53018134/

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