Java Scanner hasNextInt()方法
java.util.Scanner.hasNextInt() 如果在此scanner输入信息中的下一个标记可以使用nextInt()方法被解释为一个int值的默认基数,方法返回true。scanner不执行任何输入。
1 语法
public final long readLong()
2 参数
无
3 返回值
当且仅当此scanner的下一个标记是有效的int值,此方法返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.hasNextInt()方法的例子
*/
import java.util.*;
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);
while (scanner.hasNext()) {
// check if the scanner's next token is an int
System.out.println("" + scanner.hasNextInt());
// print what is scanned
System.out.println("" + scanner.next());
}
// close the scanner
scanner.close();
}
}
输出结果为:
false
Hello
false
World!
true
3
false
+
false
3.0
false
=
true
6
热门文章
优秀文章