java.util.Scanner.nextBigInteger() 方法用于将输入的下一个标记扫描为 BigInteger。调用 nextBigInteger() 形式的此方法的行为与调用 nextBigInteger(radix) 的行为完全相同,其中 radix 是此扫描器的默认基数。
语法
public BigInteger nextBigInteger()
参数
不需要参数。
返回值
返回从输入扫描的BigInteger。
Exception
- 如果下一个标记与 BigInteger 正则表达式不匹配或超出范围,则抛出 InputMismatchException。
- 抛出 NoSuchElementException(如果输入已用尽)。
- 抛出 IllegalStateException(如果此扫描仪已关闭)。
示例:
在下面的示例中,java.util.Scanner.nextBigInteger() 方法用于将输入的下一个标记扫描为 BigInteger。
import java.util.*;
public class MyClass {
public static void main(String[] args) {
//要扫描的字符串
String MyString = "Hello World 10 + 20 = 30.0";
//创建扫描仪
Scanner MyScan = new Scanner(MyString);
while(MyScan.hasNext()) {
//如果下一个是 BigInteger
if(MyScan.hasNextBigInteger())
System.out.println("BigInteger value is: "+ MyScan.nextBigInteger());
//如果下一个不是 BigInteger
else
System.out.println("No BigInteger Value found: "+ MyScan.next());
}
//关闭扫描仪
MyScan.close();
}
}
上述代码的输出将是:
No BigInteger Value found: Hello
No BigInteger Value found: World
BigInteger value is: 10
No BigInteger Value found: +
BigInteger value is: 20
No BigInteger Value found: =
No BigInteger Value found: 30.0