自定义一个异常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应该怎么写?