1

我有一个抽象类“HotelReviewClass”和“RestaurantReviewClass”,我想在其中初始化不是 commun 和 commun 的变量去“超级”类

但是我有一个错误“构造函数调用必须是构造函数中的第一个语句”我如何初始化那些不常用的变量(因为“HotelReviewClass”和“RestaurantReviewClass”变量不相等)

package pt;

public class HotelReviewClass extends AbstractReview{

    private String ratingService;
    private String ratingLocal;

    public HotelReviewClass(String grade, String comment, String service, String local, String owner){
        this.ratingService = service;
        this.ratingLocal = local;
        super(grade, comment, owner);
    }

}
4

1 回答 1

3

调用超级构造函数的任何构造函数的第一行必须是对超级构造函数的调用。

只需将调用移至第一行:

public HotelReviewClass(String grade, String comment, String service, String local, String owner){
    super(grade, comment, owner);
    this.ratingService = service;
    this.ratingLocal = local;
}
于 2013-05-27T00:43:38.173 回答