一、用户交互Scanner
Scanner对象
Demo01
Demo02
Demo03
- 使用next()方式接收
package scanner;
import java.util.Scanner;
public class Demo01 {
public static void main(String[] args) {
//创建一个扫描器对象,用于接收键盘数据
Scanner sc = new Scanner(System.in);
System.out.println("使用next方式接收:");
//判断用户有没有输入字符串
if(sc.hasNext()) {
//使用next方式接收
String str = sc.next();
System.out.println("输入的内容为:"+str);
}
sc.close();//凡是属于IO流的类如果不关闭会一直占用资源
}
}
输入hello world只能输出hello
- 一定要读到有效字符后才可以结束输入
- 对输入有效字符之前遇到的空白,next()方法会自动将其去掉
- 只有输入有效字符后才将其后面输入的空白座位分隔符或结束符
- next()不能得到带有空格的字符串
- 使用nextLine()方式接收
package scanner;
import java.util.Scanner;
public class Demo02 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("使用nextLine方式接收:");
if(sc.hasNextLine()) {
String str = sc.nextLine();
System.out.println("输出的内容为:"+str);
}
sc.close();
}
}
输入hello world能输出hello world
- 以Enter为结束符,也就是说nextLine()方法返回的是输入回车之前的所有字符
- 可以获得空白
所以不需要if判断 ?不是很明白这里的关联
package scanner;
import java.util.Scanner;
public class Demo03 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入: ");
String str = sc.nextLine();
System.out.println("输出的内容为:"+str);
sc.close();
}
}
标签:java,Scanner,流程,Day5,System,println,sc,out
From: https://www.cnblogs.com/tse121/p/18684757