Java.util.Scanner.hasNextLine() Java.util.Scanner.hasNextInt() Java.util.Scanner.hasNextLong() 描述 所述java.util.Scanner.hasNextLine()如果有在该扫描仪的输入另一行方法返回true。此方法可能在等待输入时阻塞。扫描仪不会超过任何输入。 声明 以下是java.util.Scanner.hasNextLine()方法的声明 public boolean hasNextLine() 参数 NA 返回值 当且仅当此扫描器具有另一行输入时,此方法才返回true 异常 IllegalStateException - 如果此扫描程序已关闭 实例 以下示例显示了java.util.Scanner.hasNextLine()方法的用法。 package com.tutorialspoint; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! \n 3 + 3.0 = 6 "; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // print the next line System.out.println("" + scanner.nextLine()); // check if there is a next line again System.out.println("" + scanner.hasNextLine()); // print the next line System.out.println("" + scanner.nextLine()); // check if there is a next line again System.out.println("" + scanner.hasNextLine()); // close the scanner scanner.close(); } } 让我们编译并运行上面的程序,这将产生以下结果 Hello World! true 3 + 3.0 = 6 false Java.util.Scanner.hasNextInt() Java.util.Scanner.hasNextLong()