gpt4 book ai didi

java - BigInteger 类型的方法 add(long) 不可见

转载 作者:行者123 更新时间:2023-12-02 02:34:30 25 4
gpt4 key购买 nike

如何将任何数字添加到 BigInteger 中?我在 eclipse 中收到此错误:-

BigInteger 类型的 add(long) 方法不可见

import java.math.BigInteger;

public class M {
public static void main(String[] args) {
BigInteger a = new BigInteger("20000423242342342354857948787922222222222388888888888888888");
System.out.println("" + (a.add(2));
}
}

最佳答案

您无法将普通整数添加到 BigInteger

但是您可以将一个 BigInteger 添加到另一个 BigInteger。因此,您应该将原始整数转换为 BigInteger,如下所示:

System.out.println(b.add(BigInteger.valueOf(2)));

关于java - BigInteger 类型的方法 add(long) 不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46592321/

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