return super.getDescription() + "我来自非洲。我每个月下 "+getMonthlyEggCount()+" 个蛋。"; 就可以了
1
正在讨论
评论 (2)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
zmoonz
29 三月 2021, 06:57
public String getDescription() {
return super.getDescription() + String.format(
"我来自 %s 。我每个月下 %d 个蛋。",
Continent.AFRICA, getMonthlyEggCount());
}
0
zmoonz
29 三月 2021, 06:56
return super.getDescription() + "我来自“+Continent.AFRICA+”。我每个月下 "+getMonthlyEggCount()+" 个蛋。";
0