BigInteger 类中有多个构造函数,其中一个是接受字符串作为输入的参数。它将字符串转换为 BigInteger 对象的内部表示。在这个构造函数中,字符串被解释为一个带有指定基数的整数。默认情况下,基数为 10。如果需要使用其他基数,则可以在构造函数中指定。
以下是一个示例,它将字符串 "123456789" 转换为 BigInteger 对象:
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
String str = "123456789";
BigInteger bigint1 = new BigInteger(str);
System.out.println("bigint1 = " + bigint1);
BigInteger bigint2 = new BigInteger(str, 16);
System.out.println("bigint2 = " + bigint2);
}
}
输出结果为:
bigint1 = 123456789
bigint2 = 305419896
第一个 BigInteger 对象使用默认基数 10,因此它与字符串相同。第二个 BigInteger 对象使用 16 进制的基数,因此它与字符串不同。