Java Scanner nextShort() 方法



描述

java Scanner nextShort() 方法将输入的下一个标记扫描为短整型。以 nextShort() 形式调用的此方法的行为与调用 nextShort(radix) 的行为完全相同,其中 radix 是此扫描程序的默认基数。

声明

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

public short nextShort()

参数

返回值

此方法返回从输入扫描的短整型。

异常

  • InputMismatchException − 如果下一个标记与 Short 正则表达式不匹配,或者超出范围

  • NoSuchElementException − 如果输入已耗尽

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

Java Scanner nextShort(int radix) 方法

描述

Java Scanner nextShort(int radix) 方法将输入的下一个标记扫描为短整型。如果下一个标记无法按照以下说明转换为有效的短整型值,则此方法将抛出 InputMismatchException。如果转换成功,扫描程序将越过匹配的输入。

声明

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

public short nextShort(int radix)

参数

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

返回值

此方法返回从输入扫描的短整型。

异常

  • InputMismatchException − 如果下一个标记与 Short 正则表达式不匹配,或者超出范围

  • NoSuchElementException − 如果输入已耗尽

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

使用字符串示例获取扫描程序的下一个短整型标记

以下示例演示了如何使用 Java Scanner nextShort() 方法以默认基数扫描下一个标记为 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 a Short
         if(scanner.hasNextShort()){
            // print what is scanned
            System.out.println("Found: " + scanner.nextShort());		 
         } else {
            System.out.println("Not Found: " + scanner.next());
         }
      }

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

输出

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

Not Found: Hello
Not Found: World!
Found: 3
Not Found: +
Not Found: 3.0
Not Found: =
Found: 6

使用给定基数的字符串扫描程序获取下一个短整型标记的示例

以下示例演示了如何使用 Java Scanner nextShort() 方法以给定的基数扫描下一个标记为 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 a Short
         if(scanner.hasNextShort(4)){
            // print what is scanned
            System.out.println("Found: " + scanner.nextShort(4));		 
         } else {
            System.out.println("Not Found: " + scanner.next());
         }
      }

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

输出

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

Not Found: Hello
Not Found: World!
Found: 3
Not Found: +
Not Found: 3.0
Not Found: =
Not Found: 6

使用用户输入示例获取扫描程序的下一个短整型标记

以下示例演示了如何使用 Java Scanner nextShort() 方法以给定的基数扫描下一个标记为 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("Found: " + scanner.nextShort());		 
      } else {
         System.out.println("Not Found: " + scanner.next());
      }

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

输出

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

3
Found: 3
java_util_scanner.htm
广告