我有一個名爲「ConstituentSet」的類。它有一個方法,即輸出將來自「Proposition」類的「getNucleusInConstSet()」。新的類「命題」有另一種方法,即「getProperty()」。我想知道我的「命題核」在「成分集」類中的屬性。但我不知道我該怎麼做。 我寫作如下,但它不起作用。 (ConstituentSet.getNucleusInConstSet()).getProperty())
調用獲取不同類的方法
public class ConstituentSet{
// Constructor
private Proposition nucleusInConstSet;
public Proposition getNucleusInConstSet() {
return nucleusInConstSet;
}
}
public class Proposition{
//Constructor
private Property property;
public Property getProperty() {
return this.type;
}
}
當你這樣稱呼時會發生什麼?你有什麼錯誤嗎? –
問題:爲什麼getProperty返回this.type而不是this.propperty? – Luis
我得到這個錯誤:「無法對類型ConstituentSet」 – user2583693