我用的是 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条答案
按热度按时间qjp7pelc16#
如果您想快速扫描输入而不被scanner类nextline()方法所迷惑,请使用自定义输入扫描器。
代码:
优点:
扫描输入速度比bufferreader快
降低时间复杂性
为下一个输入刷新缓冲区
方法:
scanchar()-扫描单个字符
scanint()-扫描整数值
scanlong()-扫描长度值
scanstring()-扫描字符串值
scandouble()-扫描双值
scanint(int[]数组)-扫描整个数组(整数)
scanlong(long[]数组)-扫描整个数组(long)
用法:
将给定的代码复制到java代码下面。
初始化给定类的对象
ScanReader sc = new ScanReader(System.in);
3.导入必要的类:import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream;
4.从主方法抛出ioexception来处理异常5。使用提供的方法。6.享受示例:
m2xkgtsf17#
sc.nextLine()
比解析输入更好。因为从性能上看,它是好的。4ioopgfo18#
使用此代码可以解决您的问题。
whlutmcx19#
因为当你输入一个数字然后按回车键,
input.nextInt()
只消耗数字,不消耗“行尾”。什么时候input.nextLine()
执行时,它将使用第一个输入中仍在缓冲区中的“行尾”。相反,使用
input.nextLine()
紧接着input.nextInt()
fafcakar20#
为什么每次阅读都不使用新的扫描仪呢?就像下面一样。用这种方法你将不会面对你的问题。
flseospp21#
在我的一个用例中,我有这样一个场景:读取一个字符串值,后跟几个整数值。我必须使用“for/while循环”来读取值。而上述建议在这种情况下都不起作用。
使用
input.next()
而不是input.nextLine()
解决了这个问题。希望这对处理类似情况的人有所帮助。