public Tipo getTipo() {
return this.Importo < 0.0 ? Tipo.USCITA : Tipo.ENTRATA;
}
public int compareTo(Movimento m) {
if (this.idConto != this.idConto) {
return this.idConto - this.idConto;
}
return this.DataMov.compareTo(this.DataMov);
}
public static enum Tipo {
ENTRATA,// here i have this error : The constructor Movimento.Tipo() is undefined
USCITA;// here is the same : The constructor Movimento.Tipo() is undefined
private Tipo(String string2, int n2) {
}
}
我已經有構造函數,我需要,還有什麼我需要寫?構造函數未定義?枚舉錯誤
枚舉你寫一個構造函數有兩個參數,但沒有默認的構造函數。這意味着編譯器不會提供無參數構造函數。你應該提供一個。 – duffymo