任务7:添加结构
export class Item {
...
update() {
if (!this.isAgedBrie() && !this.isBackstagePass()) { ... } else { ... }
if (!this.isSulfuras()) { ... }
if (this.sellIn < 0) { ... }
}
...
}你的任务
git checkout task-7-adding-structure
./gradlew clean build反思
Last updated