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