自從我使用JAVA以來已經有一段時間了。創建實例變量不起作用?
我想創建一個實例變量,以便在另一個類中使用一個方法。
但它給我,說此錯誤消息「的構造BB是未定義」
任何幫助嗎?
public class AA implements CC { //this is the class where I am trying to create an instance variable
public int Get() {
throw new IllegalStateException("Please implement me.");
BB fifo = new BB(); // this is where I am declaring.
}
}
還有FIFOLock類的簽名。
public class BB implements DD {
public int Get() {}
}
*「一段時間,因爲我用JAVA。」 *它已經足夠成熟,現在,我們不覺得有必要關於它。所以現在你可以稱之爲'Java'。 –
你在BB和DD中有什麼構造函數定義? –
我沒有在那裏看到任何實例變量... –