Clubs と Date という 2 つのクラスがあります。- 日付延長クラブ
以下のコードを追加すると、Clubs クラスに、すべて Club を拡張する他のクラスと一緒に Date クラスが台無しになります。
public Clubs(Parcel in) { readFromParcel(in); }
これは私の日付クラスです
public class Date extends Clubs {
public Date(String day){
clubName = day;
date = "";
eventType = "";
}
}
暗黙のスーパー コンストラクター Clubs() は未定義です 別のコンストラクターを明示的に呼び出す必要があります
上記のメッセージは、赤い下線にカーソルを合わせたときに表示されるエラーですpublic Date(String day){
どんな助けでも大歓迎です:
以下にクラブクラスを投稿しました
public class Clubs implements Parcelable{
protected String clubName;
protected String address;
protected String postcode;
protected String contactName;
protected String contactPhone;
String date, eventType, scrutTime, startTime, eventName, week;
public Clubs(String e){
}
public String getDetails() {
return address + " " + postcode + " " + contactName + " " + contactPhone + " " + date + " " + eventType + " " + scrutTime + " ";
}
public String getEvent() {
return date + " " + eventType;
}
public String getName(){
return clubName;
}
public String getDate(){
return date;
}
public String getWeek(){
return week;
}
public String geteventName(){
return eventName;
}
public void setEvent(String eventType, String date, String scrutTime, String startTime, String eventName, String week) {
this.eventType = eventType;
this.date = date;
this.scrutTime = scrutTime;
this.startTime = startTime;
this.eventName = eventName;
this.week = week;
}
public void setEvent(String eventType, String date) {
this.eventType = eventType;
this.date = date;
}