java.util.Scanner 是Java5的新特性,通过Scanner可以获取到用户的键盘输入。
创建 java.util.Scanner 对象:
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
}
hasNext 和 hasNextLine 区别:
不同点: hasNext
- 一定要读取到有效字符后才可以结束输入
- 对输入有效字符之前遇到的空白,next() 方法会自动将其去掉
- 只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符
- next() 不能得到带有空格的字符串
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
if (scanner.hasNext()) {
int age = scanner.nextInt();
System.out.println("输入的年龄为:" + age);
}
scanner.close();
}
hasNextLine
- 以Enter为结束符,也就是说 nextLine()方法返回的是输入回车之前的所有字符。
- 可以获得空白。
public static void main(String[] args) {
Scanner scanner = new Scanner();
if (scanner.hasNextInt()) {
int age = scanner.nextInt();
System.out.println("输入年龄为:" + age);
}
scanner.clone();
}
获取其他类型数据,建议在读取之前先使用 hasNextXxx() 方法验证,再使用 nextXxx() 读取
public static void mian(String[] args) {
Scanner scanner = new Scanner(System.in);
byte b = scanner.nextByte();
short b = scanner.nextShort();
char b = scanner.nextChar();
int age = scanner.nextInt();
long b = scanner.nextLong();
float num = scanner.nextFlot();
double b = scanner.nextDouble();
boolean b = scanner.nextBoolean();
String str = scanner.nextLine();
}
原创博主:Little Tomcat 博主原文链接:https://mp.weixin.qq.com/s/-g_F1Qxj2P6gxRchV_6mVw
|