Java Scanner hasNextBigInteger() 方法



描述

Java Scanner hasNextBigInteger() 方法返回 true,如果此扫描程序输入中的下一个标记可以使用 nextBigInteger() 方法解释为默认基数的 BigInteger。扫描程序不会跳过任何输入。

声明

以下是 java.util.Scanner.hasNextBigInteger() 方法的声明

public boolean hasNextBigInteger()

参数

返回值

当且仅当此扫描程序的下一个标记是有效的 BigInteger 时,此方法返回 true。

异常

IllegalStateException − 如果此扫描程序已关闭

Java Scanner hasNextBigInteger(int radix)

描述

Java Scanner hasNextBigInteger(int radix) 方法返回 true,如果此扫描程序输入中的下一个标记可以使用 nextBigInteger() 方法解释为指定基数的 BigInteger。扫描程序不会跳过任何输入。

声明

以下是 Java Scanner hasNextBigInteger() 方法的声明

public boolean hasNextBigInteger(int radix)

参数

radix − 用于将标记解释为整数的基数

返回值

当且仅当此扫描程序的下一个标记是有效的 BigInteger 时,此方法返回 true。

异常

IllegalStateException − 如果此扫描程序已关闭

使用 Scanner 对字符串示例检查下一个标记作为 BigInteger

以下示例演示了 Java Scanner hasNextBigInteger() 方法的使用,用于使用默认基数检查下一个标记是否为 BigInteger。我们使用给定的字符串创建了一个扫描程序对象。然后我们检查每个标记是否为 BigInteger 并打印。最后,使用 close() 方法关闭扫描程序。

package com.tutorialspoint;

import java.util.Scanner;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! 3 + 3.0 = 6";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      while (scanner.hasNext()) {
         
         // check if the scanner's next token is a BigInteger
         System.out.println("" + scanner.hasNextBigInteger());

         // print what is scanned
         System.out.println("" + scanner.next());
      }

      // close the scanner
      scanner.close();
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

false
Hello
false
World!
true
3
false
+
false
3.0
false
=
true
6

使用 Scanner 对字符串示例检查基数为 5 的下一个标记作为 BigInteger

以下示例演示了 Java Scanner hasNextBigInteger() 方法的使用,用于使用基数 5 检查下一个标记是否为 BigInteger。我们使用给定的字符串创建了一个扫描程序对象。然后我们检查每个标记是否为 BigInteger 并打印。最后,使用 close() 方法关闭扫描程序。

package com.tutorialspoint;

import java.util.Scanner;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! 3 + 3.0 = 6";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      while (scanner.hasNext()) {
         
         // check if the scanner's next token is a BigInteger
         System.out.println("" + scanner.hasNextBigInteger(4));

         // print what is scanned
         System.out.println("" + scanner.next());
      }

      // close the scanner
      scanner.close();
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

false
Hello
false
World!
true
3
false
+
false
3.0
false
=
false
6

使用 Scanner 对用户输入示例检查下一个标记作为 BigInteger

以下示例演示了 Java Scanner hasNextBigInteger() 方法的使用,用于检查下一个标记是否为 BigInteger。我们使用 System.in 类创建了一个扫描程序对象。然后我们检查每个标记是否为 BigInteger 并打印。最后,使用 close() 方法关闭扫描程序。

package com.tutorialspoint;

import java.util.Scanner;

public class ScannerDemo {
   public static void main(String[] args) {

      // create a new scanner with System Input
      Scanner scanner = new Scanner(System.in);
         
      // check if the scanner's next token is a BigInteger
      if(scanner.hasNextBigInteger()){
         // print what is scanned
         System.out.println(scanner.next());		 
      } else {
         scanner.next();
      }

      // close the scanner
      scanner.close();
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:(我们在其中输入了 3.0。)

3
3
java_util_scanner.htm
广告