关于Scanner
//创建一个扫描器对象, 用于接受键盘数据
Scanner scanner = new Scanner(System.in);
System.out.println("使用next接受: ");
//判断用户有没有输入字符串
if (scanner.hasNext()){
//使用next接受
String str = scanner.next();
System.out.println("next()输出内容为: " + str);
String str1 = scanner.nextLine();
System.out.println("nextLine()输出内容为 " + str1);
/*
next(): 一定要读取到有效字符才可以结束输入;
对输入有效字符之前的空格,next()会自动将其去掉;
只有输入有效字符之后才将其后面输入的空格作为分隔符或者结束符;
next()不能接受带有空格的字符串
nextLine(): 以Enter作为结束符,也就是说nextLine()方法接收的是回车之前的所有字符;
可以获得空白
*/
}
//凡是属于IO流的类如果不关闭会一直占用资源
scanner.close();
输出结果:
使用next接受:
Hello Java World
next()输出内容为: Hello
nextLine()输出内容为 Java World
Process finished with exit code 0