我用的是 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条答案
按热度按时间3bygqnnd1#
问题在于input.nextint()方法-它只读取int值。因此,当您继续使用input.nextline()读取时,会收到“\n”enter键。因此,要跳过此操作,必须添加input.nextline()。希望这一点现在应该清楚了。
试着这样做:
piv4azn72#
使用此代码可以解决您的问题。
vuv7lop33#
问题在于input.nextint()方法-它只读取int值。因此,当您继续使用input.nextline()读取时,会收到“\n”enter键。因此,要跳过此操作,必须添加input.nextline()。希望这一点现在应该清楚了。
试着这样做:
am46iovg4#
如果要同时读取字符串和整数,解决方案是使用两个扫描仪:
fzwojiic5#
为了避免问题,请使用
nextLine();
紧接着nextInt();
因为它有助于清除缓冲区。当你按下ENTER
这个nextInt();
不捕获新行,因此跳过Scanner
稍后再编码。lyr7nygr6#
sc.nextLine()
比解析输入更好。因为从性能上看,它是好的。osh3o9ms7#
作为
nextXXX()
方法不读newline
,除了nextLine()
. 我们可以跳过newline
在阅读任何non-string
价值(int
在这种情况下)使用scanner.skip()
具体如下:doinxwow8#
使用两个扫描仪对象而不是一个
uxh89sit9#
sqxo8psd10#
因为当你输入一个数字然后按回车键,
input.nextInt()
只消耗数字,不消耗“行尾”。什么时候input.nextLine()
执行时,它将使用第一个输入中仍在缓冲区中的“行尾”。相反,使用
input.nextLine()
紧接着input.nextInt()
eit6fx6z11#
而不是
input.nextLine()
使用input.next()
,这应该能解决问题。修改代码:
qacovj5a12#
如果我期望一个非空的输入
用于上述示例:
ubof19bj13#
要解决此问题,只需执行scan.nextline(),其中scan是scanner对象的示例。例如,我用一个简单的hackerrank问题来解释。
}
wh6knrhe14#
我想我去派对已经很晚了。。
如前所述,呼叫
input.nextLine()
得到int值后,问题就迎刃而解了。你的代码不起作用的原因是因为你的输入(输入int的地方)中没有其他东西可以存储string1
. 我只想对整个主题多讲一点。将nextline()看作scanner类中nextfoo()方法中的奇数。让我们举个简单的例子。。假设我们有两行代码,如下所示:
如果我们输入下面的值(作为一行输入)
54 234
我们的价值
firstNumber
以及secondNumber
变量分别变为54和234。这样做的原因是,当nextint()方法接受值时,不会自动生成换行符(即\n)。它只需要“next int”就可以继续了。除nextline()外,其余的nextfoo()方法也是如此。nextline()在获取一个值后立即生成一个新行提要;这就是@rohitjain所说的新行提要“已消耗”的意思。
最后,next()方法只取最近的字符串,而不生成新行;这使它成为在同一行中获取单独字符串的首选方法。
我希望这有帮助。。快乐的编码!
von4xj4u15#
关于这个问题,我们似乎有很多疑问
java.util.Scanner
. 我认为一个更具可读性/习惯性的解决方案是scanner.skip("[\r\n]+")
调用后删除任何换行符nextInt()
.编辑:正如@patrickparker在下面提到的,如果用户在数字后面输入任何空格,这将导致一个无限循环。查看他们的答案,以获得更好的模式来使用skip:https://stackoverflow.com/a/42471816/143585