首页  >  文章  >  Java  >  使用 Scanner.nextInt() 时如何避免“java.util.NoSuchElementException”?

使用 Scanner.nextInt() 时如何避免“java.util.NoSuchElementException”?

Susan Sarandon
Susan Sarandon原创
2024-11-11 20:11:03987浏览

How to Avoid the

Scanner Error with nextInt()

当使用 Scanner 类从键盘读取整数 (int) 时,您可能会遇到错误:java.util.NoSuchElementException。当输入流中没有可供读取的整数时,就会出现此错误。

要解决此问题,请在调用 nextInt() 之前使用 hasNextInt() 方法检查整数是否可用。如果整数可用,则 hasNextInt() 方法返回 true,否则返回 false。实施方法如下:

Scanner s = new Scanner(System.in);

if (s.hasNextInt()) {
    int choice = s.nextInt(); // Read the integer without fear of NoSuchElementException
} else {
    System.out.println("No integer found in the input.");
}

s.close();

以上是使用 Scanner.nextInt() 时如何避免“java.util.NoSuchElementException”?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn