为什么这个java代码会抛出StackOverflowError
个异常?
public class factorial2 {
public BigInteger fact( BigInteger n)
{
BigInteger one = new BigInteger("1");
if(n.equals("0"))
return one;
else
return n.multiply(fact(n.subtract(one)));
}
public static void main(String[] args) {
@SuppressWarnings("resource")
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
factorial2 f = new factorial2();
for(int i=0;i<n;i++)
{
BigInteger b = sc.nextBigInteger();
System.out.println(f.fact(b));
}
sc.close();
}
}
我尝试使用BigInteger
生成阶乘。但是,为什么我的代码在输入上给出引用异常?
答案 0 :(得分:5)
问题在于您的基本情况; n
(BigInteger
)不等于"0"
(String
)。所以你继续else
块,重新诅咒。此外,BigInteger
包含ONE
和ZERO
的常量,因此您可以编写类似
public static BigInteger fact(BigInteger n) {
if (n.equals(BigInteger.ZERO) || n.equals(BigInteger.ONE))
return BigInteger.ONE;
else
return n.multiply(fact(n.subtract(BigInteger.ONE)));
}
或 使用三元操作(条件运算符? :
),如
public static BigInteger fact(BigInteger n) {
return (n.equals(BigInteger.ZERO) || n.equals(BigInteger.ONE)) ? BigInteger.ONE
: n.multiply(fact(n.subtract(BigInteger.ONE)));
}
答案 1 :(得分:2)
BigInteger #equals方法
public boolean equals(Object x) {
// This test is just an optimization, which may or may not help
if (x == this)
return true;
if (!(x instanceof BigInteger))
return false;
此条件始终为假
if (n.equals("0"))
相反,请使用
if (BigInteger.ZERO.equals(n))