java.util.Scanner.hasNextLine()方法實例
java.util.Scanner.hasNextLine() 如果有另一條線在此scanner的輸入方法返回true。在等待輸入此方法可能阻塞。scanner不執行任何輸入。
聲明
以下是java.util.Scanner.hasNextLine()方法的聲明
public boolean hasNextLine()
參數
-
NA
返回值
當且僅當此scanner輸入另一行此方法返回true
異常
-
IllegalStateException -- 如果此scanner 已關閉
例子
下麵的示例演示java.util.Scanner.hasNextLine()方法的用法。
package com.yiibai; 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); // 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