如果
nextInt()失败,则抛出异常,但不使用无效数据。从文档中:
当扫描程序抛出时
InputMismatchException,扫描程序将不会传递导致异常的令牌,因此可以通过其他方法检索或跳过该令牌。
然后
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");} } }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)