首页 > Java > java教程 > 使用 Scanner.nextInt() 时如何避免'java.util.NoSuchElementException”?

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

Susan Sarandon
发布: 2024-11-11 20:11:03
原创
1039 人浏览过

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中文网其他相关文章!

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