Scanner(System.in) - 无限循环

Scanner(System.in) - infinite loop

为什么我在递归方法中遇到无限循环,却没有机会输入任何符号来打破它?

class Test {
   int key=0;
   void meth(){
     System.out.println("Enter the number here: ");
     try(Scanner scan = new Scanner(System.in)) {
        key = scan.nextInt();
        System.out.println(key+1);
     } catch(Exception e) {
        System.out.println("Error");
        meth();
     }
   }
}

class Demo {
  main method {
    Test t = new Test();
    t.meth();
  }
} 

如果您尝试创建一个错误(将字符串值放入键中,然后尝试向其添加一个数字),您将在控制台中得到无限的 "Error" 文本,而不是在第一个错误之后,程序应该再次询问号码,然后才决定要做什么。

如果nextInt()失败,它抛出异常但不消耗无效数据。来自 documentation:

When a scanner throws an InputMismatchException, the scanner will not pass the token that caused the exception, so that it may be retrieved or skipped via some other method.

然后您再次递归调用 meth(),这将尝试再次使用相同的无效数据,再次失败(不使用它),然后递归。

首先,我一开始就不会在这里使用递归。更喜欢简单的循环。接下来,如果您有无效输入,您应该在重试之前适当地使用它。最后,考虑使用 hasNextInt 而不是仅使用 nextInt 并捕获异常。

所以也许是这样的:

import java.util.Scanner;

class Test {
   public static void main(String[] args){
       try (Scanner scanner = new Scanner(System.in)) {
           System.out.println("Enter the number here:");
           while (!scanner.hasNextInt() && scanner.hasNext()) {
               System.out.println("Error");
               // Skip the invalid token
               scanner.next();
           }
           if (scanner.hasNext()) {
               int value = scanner.nextInt();
               System.out.println("You entered: " + value);
           } else {
               System.out.println("You bailed out");
           }
       }
   }
}