public class Hero {
String name;
int hp;
/* … */
public boolean equals(Object o) {
if (this == o) { return true; }
if (o instanceof Hero) {
Hero h = (Hero)o;
if (this.name.equals(h.name)) {
return true;
}
}
return false;
}
}
ifの中になぜ、returnがあるのかが理解できません。returnの仕組みについて教えてください。
回答2件
あなたの回答
tips
プレビュー