Java.util.Scanner.hasNextInt(int radix) 方法 Java.util.Scanner.hasNextInt() 方法 Java.util.Scanner.hasNextLine() 方法 Java.util.Scanner.hasNextInt(int radix) 方法 package com.codingdict; import java.util.*; 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 int with a radix of 4 System.out.println("" + scanner.hasNextInt(4)); // print what is scanned System.out.println("" + scanner.next()); } // close the scanner scanner.close(); } } Java.util.Scanner.hasNextInt() 方法 Java.util.Scanner.hasNextLine() 方法