这是我第一次使用异常处理,所以要温柔。我有一个接受 ID 的简单 blob 类,id 必须在 30 到 50 之间,否则会引发异常。
public class Blob {
int id;
public Blob() {
}
public Blob(int id) throws Exception {
this.id = id;
if (id < 30 || id > 50)
throw new Exception ("id = " +id+ ", must be between 30 and 50 inclusive");
}
}
它应该提示用户输入一个 id,如果它不在 30 到 50 之间,则抛出异常,并且应该继续,直到用户输入一个有效的输入,然后简单地显示 id 号。
public class BlobCreator {
public static void main(String[] args) {
int id;
Scanner scan = new Scanner(System.in);
System.out.println("Enter ID number: ");
id = scan.nextInt();
do {
try {
Blob b = new Blob(id);
}
catch (Exception e) {
System.out.println(e);
}
System.out.println("Enter a different ID: ");
id = scan.nextInt();
}
while(true);
}
System.out.println("Blob ID: " +id);
}
我认为我正确地使用了 throw 和 catch,但我的循环无法正常工作,所以我认为这应该是一个简单的修复,但我无法做到恰到好处。也正在使用 while 循环,就像我对这种情况有最好的方法,还是有更好的方法来循环 throw 和 catch?
感谢您的任何帮助