Java Scanner hasNextShort() 方法



描述

java.util.Scanner.hasNextShort() 方法返回 true,如果此扫描器输入中的下一个标记可以使用 nextShort() 方法解释为默认基数中的 short 值。扫描器不会越过任何输入。

声明

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

public boolean hasNextShort()

参数

返回值

当且仅当此扫描器的下一个标记是在默认基数中有效的 short 值时,此方法返回 true

异常

IllegalStateException − 如果此扫描器已关闭

Java Scanner hasNextShort(int radix) 方法

描述

java.util.Scanner.hasNextShort(int radix) 方法返回 true,如果此扫描器输入中的下一个标记可以使用 nextShort() 方法解释为指定的基数中的 short 值。扫描器不会越过任何输入。

声明

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

public boolean hasNextShort(int radix)

参数

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

返回值

当且仅当此扫描器的下一个标记是在指定的基数中有效的 short 值时,此方法返回 true

异常

IllegalStateException − 如果此扫描器已关闭

使用 Scanner 在字符串上检查下一个标记是否为 Short 的示例

以下示例演示了 Java Scanner hasNextShort() 方法的使用,用于使用默认基数检查下一个标记是否为 Short。我们使用给定的字符串创建了一个扫描器对象。然后我们检查每个标记是否为 Short 并打印出来。最后,使用 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 an Short
         System.out.println("" + scanner.hasNextShort());

         // 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 在字符串上使用基数检查下一个标记是否为 Short 的示例

以下示例演示了 Java Scanner hasNextShort() 方法的使用,用于使用基数 4 检查下一个标记是否为 Short。我们使用给定的字符串创建了一个扫描器对象。然后我们检查每个标记是否为 Short 并打印出来。最后,使用 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 an Short
         System.out.println("" + scanner.hasNextShort(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 在用户输入上检查下一个标记是否为 Short 的示例

以下示例演示了 Java Scanner hasNextShort() 方法的使用,用于检查下一个标记是否为 Short。我们使用 System.in 类创建了一个扫描器对象。然后我们检查每个标记是否为 Short 并打印出来。最后,使用 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 Short
      if(scanner.hasNextShort()){
         // 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
广告