Meeting クラスがあり、Meeting を拡張する BusinessMeeting クラスを作成したいと考えています。
これは私のミーティングクラスです:
public class Meeting {
private String name;
private String location;
private int start, stop;
public Meeting(String name, String location, int start, int stop) {
this.name = name;
this.location = location;
this.start = start;
this.stop = stop;
}
これは私のBusinessMeetingクラスです:
public class BusinessMeeting extends Meeting {
public BusinessMeeting() {
super();
}
}
私の BusinessMeeting クラスで、次のエラーが表示されます。
クラス Meeting のコンストラクター Meeting は、特定の型には適用できません。必須: String,String,int,int 見つかりました: 引数なし
なぜそのエラーメッセージが表示されるのか、よくわかりません。BusinessMeeting クラスは、Meeting クラスからすべての変数を継承するべきではありませんか?