java的next()的问题
publicstaticvoidmain(String[]args){//createaScannerobjecttoreaddatainteractivelyScann...
public static void main(String[] args)
{
// create a Scanner object to read data interactively
Scanner kbd = new Scanner (System.in);
System.out.println("Enter two words, separated by a space.");
String str1 = kbd.next();
String str2 = kbd.next();
System.out.println("You entered \'" + str1 + "\' and \'" + str2 + "\'");
System.out.println("Enter a line of text, then press enter");
String str3 = kbd.nextLine();
System.out.println("You entered \'" + str3 + "\'");
}
Enter two words, separated by a space.
qq ee
You entered 'qq' and 'ee'
Enter a line of text, then press enter
You entered ''
为什么假如我不在 System.out.println("You entered \'" + str1 + "\' and \'" + str2 + "\'"); 后面加上 kbd.nextLine(); 读完两个词后读句子的命令就自动执行了? 展开
{
// create a Scanner object to read data interactively
Scanner kbd = new Scanner (System.in);
System.out.println("Enter two words, separated by a space.");
String str1 = kbd.next();
String str2 = kbd.next();
System.out.println("You entered \'" + str1 + "\' and \'" + str2 + "\'");
System.out.println("Enter a line of text, then press enter");
String str3 = kbd.nextLine();
System.out.println("You entered \'" + str3 + "\'");
}
Enter two words, separated by a space.
qq ee
You entered 'qq' and 'ee'
Enter a line of text, then press enter
You entered ''
为什么假如我不在 System.out.println("You entered \'" + str1 + "\' and \'" + str2 + "\'"); 后面加上 kbd.nextLine(); 读完两个词后读句子的命令就自动执行了? 展开
1个回答
2015-11-29 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
next()一定要读取到有效字符后才可以结束输入,对输入有效字符之前遇到的空格键、Tab键或Enter键等结束符,next()方法会自动将其去掉,只有在输入有效字符之后,next()方法才将其后输入的空格键、Tab键或Enter键等视为分隔符或结束符。简单地说,next()查找并返回来自此扫描器的下一个完整标记。完整标记的前后是与分隔模式匹配的输入信息,所以next方法不能得到带空格的字符串而nextLine()方法的结束符只是Enter键,即nextLine()方法返回的是Enter键之前的所有字符,它是可以得到带空格的字符串的。
所以你输入两个数字之后按下回车就会自动执行了下面的句子。
所以你输入两个数字之后按下回车就会自动执行了下面的句子。
更多追问追答
追问
可是nextLine出现在 System.out.println("Enter a line of text, then press enter");后, 怎么会回去读上面的输入? 为什么不重新输入?
可是nextLine出现在 System.out.println("Enter a line of text, then press enter");后, 怎么会回去读上面的输入? 为什么不重新输入?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询