Java Scanner.hasNextShort(int radix)

Syntax

Scanner.hasNextShort(int radix) has the following syntax.

public boolean hasNextShort(int radix)

Example

In the following code shows how to use Scanner.hasNextShort(int radix) method.


import java.util.Locale;
import java.util.Scanner;
/*w w  w.  ja  va  2 s  .c  om*/
public class Main {

   public static void main(String[] args) {
      String s = "java2s.com 1 + 1 = 2.0 ";

      Scanner scanner = new Scanner(s);

      scanner.useLocale(Locale.US);

      while (scanner.hasNext()) {
         // check if the scanner's next token is a short with a radix 4
         System.out.println(scanner.hasNextShort(4));


         System.out.println(scanner.next());
      }

      scanner.close();
   }
}

The code above generates the following result.