我正在尝试编写一个程序,要求用户输入他们的年龄并提示他们重新输入,如果他们输入了不正确的值(例如负数,年龄超过120岁,有特殊字符或字母的年龄,范围号等...)
我尝试编写try / catch来要求用户重新输入他们的年龄:
System.out.println("Enter your age (a positive integer): ");
int num;
try {
num = in.nextInt();
while (num < 0 || num > 120) {
System.out.println("Bad age. Re-enter your age (a positive integer): ");
num = in.nextInt();
}
} catch (InputMismatchException e) {
//System.out.println(e);
System.out.println("Bad age. Re-enter your age (a positive integer): ");
num = in.nextInt();
}
当输入的年龄包含特殊字符/字母或超出范围时,程序会打印出“Bad age。重新输入您的年龄(正整数)”字样,但此后会立即终止此错误:
Exception in thread "main" java.util.InputMismatchException
at java.base/java.util.Scanner.throwFor(Unknown Source)
at java.base/java.util.Scanner.next(Unknown Source)
at java.base/java.util.Scanner.nextInt(Unknown Source)
at java.base/java.util.Scanner.nextInt(Unknown Source)
at Age.main(Age.java:21)
我的目标是让程序继续提示有效年龄,直到用户获得正确的年龄。我真的很感激任何反馈和帮助。我是java初学者:)谢谢
我试图改变将整个代码放入while循环但是它会导致无限循环...请帮助!
while (num < 0 || num > 120) {
try {
System.out.println("Bad age. Re-enter your age (a positive integer): ");
num = in.nextInt();
} catch (InputMismatchException e) {
System.out.println("Bad age. Re-enter your age (a positive integer): ");
}
}
由于您尝试捕获无效的输入状态,同时仍然提示用户输入正确的值,因此try-catch
应封装在loop
中,作为其验证过程的一部分。
使用nextInt
读取输入时,不会删除无效输入,因此您需要确保在尝试使用nextLine
重新读取缓冲区之前清除缓冲区。或者你可以放弃它,只是直接使用String
读取nextLine
值,然后使用int
将其转换为Integer.parseInt
,这个人就不那么麻烦了。
Scanner scanner = new Scanner(System.in);
int age = -1;
do {
try {
System.out.print("Enter ago between 0 and 250 years: ");
String text = scanner.nextLine(); // Solves dangling new line
age = Integer.parseInt(text);
if (age < 0 || age > 250) {
System.out.println("Invalid age, must be between 0 and 250");
}
} catch (NumberFormatException ime) {
System.out.println("Invalid input - numbers only please");
}
} while (age < 0 || age > 250);
使用do-while
循环,主要是因为,你必须至少迭代一次,即使第一遍有效值
即使您能够提示用户重新输入他的年龄,您也无法在之后检查输入是否正确。因此,我建议使用一个简单的while循环,就像你正在做的那样,但不是只查找一个数字范围,在尝试解析int之前检查它是否是一个数字。
如果你使用input.nextLine()。trim();例如,您可以使用StringUtils.isNumeric之类的方法,或者您可以实现自己的方法来返回一个布尔值,指示输入是否为数字。