Java Scanner hasNext()方法
java.util.Scanner.hasNext(String pattern) 如果下一个标记与从指定字符串构造的模式方法返回true。scanner不执行任何输入。形式hasNext(pattern)的本方法的调用完全相同的行为方式的调用hasNext(Pattern.compile(pattern))。
1 语法
public boolean hasNext(String pattern)
2 参数
pattern:一个字符串,指定要扫描的模式
3 返回值
当且仅当此scanner 有另一个标记与指定模式匹配此方法返回true
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.hasNext(String pattern) 方法的例子
*/
import java.util.*;
import java.util.regex.Pattern;
public class Demo {
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);
// check if the scanner's next token matches "World"
System.out.println("" + scanner.hasNext("World"));
// check if the scanner's next token matches "Hello"
System.out.println("" + scanner.hasNext("Hello"));
// print the rest of the string
System.out.println("" + scanner.nextLine());
// close the scanner
scanner.close();
}
}
输出结果为:
false
true
Hello World! 3 + 3.0 = 6
热门文章
优秀文章