我用的是 Scanner
方法 nextInt()
以及 nextLine()
用于读取输入。
看起来是这样的:
System.out.println("Enter numerical value");
int option;
option = input.nextInt(); // Read numerical value from input
System.out.println("Enter 1st string");
String string1 = input.nextLine(); // Read 1st string (this is skipped)
System.out.println("Enter 2nd string");
String string2 = input.nextLine(); // Read 2nd string (this appears right after reading numerical value)
问题是在输入数值后,第一个 input.nextLine()
跳过第二个 input.nextLine()
执行,因此我的输出如下所示:
Enter numerical value
3 // This is my input
Enter 1st string // The program is supposed to stop here and wait for my input, but is skipped
Enter 2nd string // ...and this line is executed and waits for my input
我测试了我的应用程序,看起来问题在于使用 input.nextInt()
. 如果我删除它,那么两者 string1 = input.nextLine()
以及 string2 = input.nextLine()
按我的意愿执行。
21条答案
按热度按时间h6my8fg216#
作为
nextXXX()
方法不读newline
,除了nextLine()
. 我们可以跳过newline
在阅读任何non-string
价值(int
在这种情况下)使用scanner.skip()
具体如下:v9tzhpje17#
sc.nextLine()
比解析输入更好。因为从性能上看,它是好的。e4yzc0pl18#
因为当你输入一个数字然后按回车键,
input.nextInt()
只消耗数字,不消耗“行尾”。什么时候input.nextLine()
执行时,它将使用第一个输入中仍在缓冲区中的“行尾”。相反,使用
input.nextLine()
紧接着input.nextInt()
dz6r00yl19#
使用两个扫描仪对象而不是一个
46qrfjad20#
xqnpmsa821#
要解决此问题,只需执行scan.nextline(),其中scan是scanner对象的示例。例如,我用一个简单的hackerrank问题来解释。
}