自定義一個異常FailException,表示不及格。
創建類Student,有兩個屬性表示平時成績和期末成績,一個方法計算總成績,用平時成績加上期末成績的0.5倍來計算總成績,如果總成績小於60分,則拋出異常FailException.
創建測試類,實例化Student對象,調用getScore方法來計算總成績,注意異常的捕獲。
代碼如下:
class Student {
private double regularGrade;
private double finalGrade;
public Student(double regularGrade, double finalGrade) {
this.regularGrade = regularGrade;
this.finalGrade = finalGrade;
}
public double getScore() throws FailException {
if (getScore() < 60) {
throw new FailException("你的成績不及格!");
}
return regularGrade + finalGrade * 0.5;
}
}
class FailException extends Exception {
public FailException() {
super();
}
public FailException(String message) {
message = "你的成績不及格!";
}
public String getMessage() {
return "未通過!" + super.getMessage();
}
}
public class Test {
public static void main(String[] args) {
// TODO Auto-generated method stub
Student s1 = new Student(50, 60);
try {
s1.getScore();
} catch (FailException e) {
System.out.print(e.toString());
}
}
}
請大家看一下我的代碼有什麼問題?我的意思是考試成績低於60分,就拋出異常不及格,但是構造方法應該怎麼寫呢?我想用一個包含message和cause的方法,cause應該怎麼寫?
首先getScore方法裡面又調用了自己,調用getScore這不死循環了?
public double getScore() throws FailException {
if (getScore() < 60) {
throw new FailException("你的成績不及格!");
}
return regularGrade + finalGrade * 0.5;
}
另外不清楚背景,請考慮這種成績不合格的結果確實是一種異常情況?就是說有這種成績不合格就需要暫停當前邏輯執行?答案如果是肯定那麼OK,否則只是通過捕獲該異常來引導到另外一個一條業務邏輯分支,那麼不建議用異常。
最後,一定自定義異常的話,建議繼承RuntimeException類,而不是Exception。