Java.util.Scanner.hasNextShort() 方法 Java.util.Scanner.hasNextLong(int radix) 方法 Java.util.Scanner.hasNextShort(int radix) 方法 Java.util.Scanner.hasNextShort() 方法 package com.codingdict; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! 3 + 3.0 = 6 "; Short sh = 1; s = s + sh; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // use US locale in order to be able to identify shorts in a string scanner.useLocale(Locale.US); while (scanner.hasNext()) { // check if the scanner's next token is a short System.out.println("" + scanner.hasNextShort()); // print what is scanned System.out.println("" + scanner.next()); } // close the scanner scanner.close(); } } Java.util.Scanner.hasNextLong(int radix) 方法 Java.util.Scanner.hasNextShort(int radix) 方法