亲爱的同学,你好,我是geely老师的助教。
你这样挺不错的。和老师的设计有不同的思路,赞。我再修改一下,看看能不能还有不一样的想法。public class DiscountCourse implements ICourse{
private ICourse course;
//折扣
private double discount;
public JavaDiscountCourse(ICourse course, double discount) {
this.course = course;
this.discount = discount;
}
@Override
public String getName() {
return this.course.getName();
}
@Override
public double getPrice() {
return this.course.getPrice() * this.discount;
}
public double getOriginPrice() {
return this.course.getPrice();
}
}