如何清除Java中的Scanner缓冲区?
我有这样的事情:
Scanner in=new Scanner(System.in); int rounds = 0;
while (rounds < 1 || rounds > 3) {
System.out.print("How many rounds? ");
if (in.hasNextInt()) {
rounds = in.nextInt();
} else {
System.out.println("Invalid input. Please try again.");
System.out.println();
}
// Clear buffer
}
System.out.print(rounds+" rounds.");
如何清除缓冲区?
编辑:我尝试了以下方法,但由于某些原因它不起作用:
while(in.hasNext()) in.next();
回答:
您无法明确清除扫描仪的缓冲区。在内部,它可能会在读取令牌后清除缓冲区,但这是porgrammers无法实现的实现细节。
以上是 如何清除Java中的Scanner缓冲区? 的全部内容, 来源链接: utcz.com/qa/433883.html