首页 > Java > java教程 > 为什么 `nextLine()` 在 `nextInt()` 之后会出现错误行为以及如何修复?

为什么 `nextLine()` 在 `nextInt()` 之后会出现错误行为以及如何修复?

Barbara Streisand
发布: 2024-12-14 13:30:11
原创
455 人浏览过

Why Does `nextLine()` Misbehave After `nextInt()` and How Can It Be Fixed?

纠正 nextLine() 行为

第二个代码示例中使用 nextLine() 时遇到的问题源于 nextInt() 的组合和 nextLine().

问题nextInt()

nextLine() 消耗整行,包括空格和按 Enter 键之前输入的字符。但是,nextInt() 仅消耗数值。如果数字后面有非数字字符或空格,nextLine() 将尝试读取它们,从而导致意外行为。

解决方案:消耗剩余换行符

以确保nextLine() 按预期读取完整行,您可以在每个 nextInt() 之后添加一个 nextLine() 调用以消耗该行上的任何剩余字符。这确保了当使用 nextLine() 读取句子时,它将收到完整的一行。

更正示例:

// Example #2 (Corrected)
import java.util.Scanner;

class Test {
    public void menu() {
        Scanner scanner = new Scanner(System.in);

        while (true) {
            System.out.println("\nMenu Options\n");
            System.out.println("(1) - do this");
            System.out.println("(2) - quit");

            System.out.print("Please enter your selection:\t");
            int selection = scanner.nextInt();
            scanner.nextLine(); // Consume remaining newline

            if (selection == 1) {
                System.out.print("Enter a sentence:\t");
                String sentence = scanner.nextLine();

                System.out.print("Enter an index:\t");
                int index = scanner.nextInt();

                System.out.println("\nYour sentence:\t" + sentence);
                System.out.println("Your index:\t" + index);
            }
            else if (selection == 2) {
                break;
            }
        }
    }
}
登录后复制

以上是为什么 `nextLine()` 在 `nextInt()` 之后会出现错误行为以及如何修复?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板