我试图绕过异常,我遇到的问题是我需要创建一个程序,要求用户输入数字 9-99。这个数字必须使用 3 个不同的异常进行错误检查。
e1:数字超出范围(200)
e2:数字是整数以外的数据类型(双精度)
e3:输入是数字(char)以外的另一种数据类型
我试图在我的 if 结构中创建模式以使所有三个工作,但是我无法区分 e2 和 e3。它将始终默认为 e2。这是我只有两个例外的情况,但我非常感谢帮助我弄清楚如何实施第三个。谢谢你。
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
boolean tryAgain = true;
do {
try {
System.out.println("Please enter an integer between 9 and 99: ");
int inInt = input.nextInt();
if (inInt >= 9 && inInt <= 99){
System.out.println("Thank you. Initialization completed.");
tryAgain = false;
}
else if (inInt < 9 || inInt > 99){
throw new NumberFormatException("Integer is out of range.");
}
}
catch (NumberFormatException e1) { // Range check
System.out.println("* The number you entered is not between 9 and 99. Try again.");
System.out.println();
input.nextLine();
}
catch (InputMismatchException e2) { // Something other than a number
System.out.println("* You did not enter an integer. Try again.");
System.out.println();
input.nextLine();
}
} while(tryAgain);
}
}
这是我现在得到的输出:
请输入 9 到 99 之间的整数:2
- 您输入的数字不在 9 到 99 之间。请重试。
请输入 9 到 99 之间的整数:f
- 您没有输入整数。再试一次。
请输入 9 到 99 之间的整数:88
谢谢你。初始化完成。