3 回答
TA贡献1818条经验 获得超8个赞
您的setMinutes
和setTomatoScore
方法不设置任何内容,它们只返回一个布尔值。我假设您忘记添加this.tomatoScore = tomatoScore
例如。
TA贡献1770条经验 获得超3个赞
您需要tomatoScore在方法状态中设置一些内容,如下所示:
public boolean setTomatoScore(int tomatoScore) {
if (tomatoScore >= 0 && tomatoScore <= 100) {
this.tomatoScore = tomatoScore;
return true;
}
return false;
}
TA贡献2036条经验 获得超8个赞
看起来你需要这个:
public boolean setMinutes(int minutes) {
if(minutes >= 0 && minutes < 60) {
//I'm guessing the <60 part here, but whatever,
//this is how you'd set the 100 limit on your setTomatoScore method
this.minutes = minutes;
return true;
}
return false;
}
做类似的修正 setTomatoScore
添加回答
举报