我用的是 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条答案
按热度按时间3phpmpom1#
作为
nextXXX()
方法不读newline
,除了nextLine()
. 我们可以跳过newline
在阅读任何non-string
价值(int
在这种情况下)使用scanner.skip()
具体如下:l5tcr1uw2#
如果要同时读取字符串和整数,解决方案是使用两个扫描仪:
kknvjkwl3#
如果我期望一个非空的输入
用于上述示例:
gg58donl4#
要解决此问题,只需执行scan.nextline(),其中scan是scanner对象的示例。例如,我用一个简单的hackerrank问题来解释。
}
y53ybaqx5#
为了避免问题,请使用
nextLine();
紧接着nextInt();
因为它有助于清除缓冲区。当你按下ENTER
这个nextInt();
不捕获新行,因此跳过Scanner
稍后再编码。hivapdat6#
使用两个扫描仪对象而不是一个
w6mmgewl7#
在我的一个用例中,我有这样一个场景:读取一个字符串值,后跟几个整数值。我必须使用“for/while循环”来读取值。而上述建议在这种情况下都不起作用。
使用
input.next()
而不是input.nextLine()
解决了这个问题。希望这对处理类似情况的人有所帮助。wooyq4lh8#
它这样做是因为
input.nextInt();
没有抓住新线。你可以通过添加一个input.nextLine();
在下面。或者,您也可以使用c#样式将下一行解析为整数,如下所示:
这样做同样有效,而且可以节省一行代码。
nfzehxib9#
omtl5h9j10#
问题在于input.nextint()方法-它只读取int值。因此,当您继续使用input.nextline()读取时,会收到“\n”enter键。因此,要跳过此操作,必须添加input.nextline()。希望这一点现在应该清楚了。
试着这样做:
xurqigkl11#
sc.nextLine()
比解析输入更好。因为从性能上看,它是好的。mwyxok5s12#
使用此代码可以解决您的问题。
lg40wkob13#
那是因为
Scanner.nextInt
方法不会读取通过按“enter”创建的输入中的换行符,因此Scanner.nextLine
在读了新行之后返回。在使用时,您会遇到类似的行为
Scanner.nextLine
之后Scanner.next()
或任何Scanner.nextFoo
方法(除nextLine
本身)。解决方法:
要么放一个
Scanner.nextLine
每次之后打电话Scanner.nextInt
或者Scanner.nextFoo
去消耗那条线的其余部分,包括新线或者,更好的是,通读输入
Scanner.nextLine
把你的输入转换成你需要的格式。例如,可以使用Integer.parseInt(String)
方法。ej83mcc014#
因为当你输入一个数字然后按回车键,
input.nextInt()
只消耗数字,不消耗“行尾”。什么时候input.nextLine()
执行时,它将使用第一个输入中仍在缓冲区中的“行尾”。相反,使用
input.nextLine()
紧接着input.nextInt()
a2mppw5e15#
问题在于input.nextint()方法-它只读取int值。因此,当您继续使用input.nextline()读取时,会收到“\n”enter键。因此,要跳过此操作,必须添加input.nextline()。希望这一点现在应该清楚了。
试着这样做: