[請益] 人事系統
class employee {
private String ID;
private String Name;
private director Director;
public void setDirector(director,Employee_Director){
Director=Employee_Director;
}
}
class director extends employee {
public void fire(String Employee_ID){
}
public void assign_job(String Employee_ID){
}
}
public class Main
{
public static void main(String[] args) {
employee A = new employee();
A.setID("e87090013");
A.setName("Tom Ho");
director B = new director();
B.setID("c80010026");
B.setName("Jay Cho");
}
}
employee.setDirector的方法,出現錯誤 error <identifier> expected
請問要如何解?謝謝 ^_^
--
※ PTT留言評論
33
Re: [討論] Unit test 的撰寫請益先說結論,先都不要寫。 Legacy system 要先補大範圍的 integration test,確定整體的行為是對的。 如果 code 沒有要再改,不用補細部 unit tests。 原因是因為,原本 API 可能因為設計不良,導致無法寫 unit test 得先 refactor 才有辦法讓它變成 testable,這情況就要先 refactor 再補 UT25
[請益] 多型用在哪如題 看了stackoverflow的一個例子 class Cup { int capacity }25
[請益] Spring boot的依賴注入降低耦合的例子推文有個連結有解答我的疑惑 感謝bron大 文章有點長 先說說我對依賴注入的理解 Spring boot13
Re: [請益] 多型用在哪本魯 OO 不太好 但你這例子多型嗎 這就只是子類別繼承父類別的屬性吧 多型比較像這樣吧 class DataLoader {11
[分享] 大都會歷史最高職位女性誕生Mets hiring Elizabeth Benn as director of major league ops in historic move Sources: The Mets have made an historic hire, bringing on Elizabeth Benn to be t heir director of Major League operations. Benn becomes the highest-ranking femal e baseball ops employee in franchise history. She was previously employed in the- 這個我很有經驗 遊戲中每個物件都會有自己的 update function, 去實作 base class 在我仔細比較過雷克斯與兩個女角的效能成本後 從一個健康男性技術員的角度出發 我猜想Rex的實作應該面臨這樣的挑戰 class Rex : public Fighter {