nextLine() 理解
在 Java 的 java.util.Scanner API 中,nextLine() 方法使开发人员能够解析字符串输入来自用户。但是,在循环内或在 nextInt() 等其他输入解析方法之后使用时,它的行为可能会有所不同。
场景 #1:
使用 nextLine( 的代码片段) 成功:
Scanner scanner = new Scanner(System.in); // Wait for user input before continuing String sentence = scanner.nextLine(); // Continue with more input int index = scanner.nextInt();
在这种情况下,nextLine() 会等待用户输入,然后再继续nextInt().
场景#2:
现在考虑一个行为异常的代码片段:
Scanner scanner = new Scanner(System.in); // Infinite loop while (true) { // Menu options int selection = scanner.nextInt(); // Input only works after reading the number if (selection == 1) { String sentence = scanner.nextLine(); int index = scanner.nextInt(); } }
这里,nextLine() 不nextInt() 之后不等待用户输入。它会跳到下一行,导致无法输入句子。
说明:
这些示例的区别在于 nextInt() 方法。它读取数字输入,但不消耗后面的换行符 (n)。因此,当 nextInt() 之后调用 nextLine() 时,它会尝试读取已经使用的换行符,从而导致场景 #2 中的意外行为。
解决方案:
要解决此问题,请在每个 nextInt() 之后插入一个额外的 nextLine() 调用,以在继续下一个输入之前消耗该行上的剩余输入 要求。这确保了 nextLine() 始终等待用户输入。
以上是为什么 Java 的 `nextLine()` 在 `nextInt()` 之后表现异常?的详细内容。更多信息请关注PHP中文网其他相关文章!