java Scanner对象
用户交互 Scanner对象
-
通过 Scanner 类来获取用户的输入。
-
创建 Scanner 对象的基本语法:
Scanner s = new Scanner(System.in); //用完加上s.close();凡是属于IO流的类如果不关闭会一直占用资源
-
通过 Scanner 类的 next() 与 nextLine() 方法获取输入的字符串,在读取前我们一般需要 使用 hasNext 与 hasNextLine 判断是否还有输入的数据。
-
next() 与 nextLine() 区别
next():
- 1、一定要读取到有效字符后才可以结束输入。
- 2、对输入有效字符之前遇到的空白,next() 方法会自动将其去掉。
- 3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
- next() 不能得到带有空格的字符串。
nextLine():
- 1、以Enter为结束符,也就是说 nextLine()方法返回的是输入回车之前的所有字符。
- 2、可以获得空白。
-
接受数据
int a = s.nextInt(); double b = s.nextDouble(); char c = s.next().charAt(i); //字符 String str = s.next(); //字符串
-
hasNext()方法
input.hasNext()的返回值是布尔值,当在缓冲区内扫描到字符时,返回true,否则发生堵塞,等待数据输入。通常用来与while连用判断是否还有输入。
while(s.hasNext()) { a=s.nextInt(); } //input.hasNext();判断还有没有数据,有的话返回true。 //input.hasNextInt();判断输入的是不是int数据,是的话返回true。
示例:
package com.yuakk.javase;
import java.util.Scanner;
public class ScannerDemo {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
System.out.println("请输入:");
int i=0;
int sum=0;
while (s.hasNextInt()) {
i++;
sum+=s.nextInt();
}
System.out.println("输入"+i+"个数。");
System.out.print("总和为"+sum+"。");
}
}
//运行结果:
请输入:
12
36
67.4
输入2个数。
总和为48。