Java Scanner hasNextLine()方法
java.util.Scanner.hasNextLine() 如果有另一条线在此scanner的输入方法返回true。在等待输入此方法可能阻塞。scanner不执行任何输入。
1 语法
public final long readLong()
2 参数
无
3 返回值
当且仅当此scanner输入另一行此方法返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.hasNextLine()方法的例子
*/
import java.util.*;
public class Demo {
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
热门文章
优秀文章