hasNextInt() 的 while 循环完成,但程序在其后不执行任何操作

发布于 2024-12-14 19:28:02 字数 421 浏览 0 评论 0原文

所以我在这里有这个程序:

ArrayList<Integer> meh = new ArrayList<Integer>();
Scanner sc = new Scanner(System.in);
System.out.print("Input 3 numbers: ");

while (sc.hasNextInt()) {
    meh.add(sc.nextInt());
    System.out.println("meeeeeep");
}

System.out.println("Goodbye");

输出(如果输入 3 个整数):

meeeeeep
meeeeeep
meeeeeep

它不会打印再见消息,也不执行我在其后面放置的任何操作。

So I have this program here:

ArrayList<Integer> meh = new ArrayList<Integer>();
Scanner sc = new Scanner(System.in);
System.out.print("Input 3 numbers: ");

while (sc.hasNextInt()) {
    meh.add(sc.nextInt());
    System.out.println("meeeeeep");
}

System.out.println("Goodbye");

Output (if 3 integers are inputed):

meeeeeep
meeeeeep
meeeeeep

It doesn't print the goodbye message, or do anything that I put after it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

携余温的黄昏 2024-12-21 19:28:02

这是因为扫描仪正在等待即将到来的输入。 sc.hasNextInt() 正在等待下一个标记并确定它是否是 int。

要解决此问题,请尝试按行读取并使用 String.split(); 拆分 " "

另一种解决方案可能是在 for 循环中执行此操作:

for (int i = 0; i < 3; ++i) {
    meh.add(sc.nextInt());
    System.out.println("meeeeeep");
}

That's because the scanner is waiting for the coming input. sc.hasNextInt() is waiting for the next token and to determine if it is a int.

To solve this, try reading by line and split on " " using String.split();

Another solution might be to do this in a for loop:

for (int i = 0; i < 3; ++i) {
    meh.add(sc.nextInt());
    System.out.println("meeeeeep");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文