所以我正在构建一个从用户输入中获取整数的程序。我有一个看起来非常简单的 try/catch 块,如果用户没有输入 int,应该重复该块直到他们输入。这是代码的相关部分:
import java.util.InputMismatchException;
import java.util.Scanner;
public class Except {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
boolean bError = true;
int n1 = 0, n2 = 0, nQuotient = 0;
do {
try {
System.out.println("Enter first num: ");
n1 = input.nextInt();
System.out.println("Enter second num: ");
n2 = input.nextInt();
nQuotient = n1/n2;
bError = false;
}
catch (Exception e) {
System.out.println("Error!");
}
} while (bError);
System.out.printf("%d/%d = %d",n1,n2, nQuotient);
}
}
如果我为第二个整数输入 0,那么 try/catch 会完全按照它应该做的那样做,并让我再次将其放入。但是,如果我有一个 InputMismatchException,比如为其中一个数字输入 5.5,它只会在无限循环中显示我的错误消息。为什么会发生这种情况,我该怎么办?(顺便说一句,我已经尝试显式输入 InputMismatchException 作为要捕获的参数,但它并没有解决问题。