我被要求重寫一個方法來實現新的行爲,我已經做了構造函數和方法。重寫方法
private String name;
private boolean disease;
public Area(Position pos, String name, boolean disease) {
super(pos);
this.name = name;
this.disease = disease;
}
public String getName() {
return name;
}
和方法我要重寫上的一個區域,使疾病得以停止,如果藥是足夠
public boolean hasDisease() {
return disease;
}
我嘗試使用
if (medicine = true) {
disease = false
}
return disease = true;
}
但引起其他測試失敗。
比較:'=='。作業:'='。 –