編集の要約なし |
|||
(同じ利用者による、間の1版が非表示) | |||
7行目: | 7行目: | ||
String name; | String name; | ||
int hp; | int hp; | ||
public int hashCode() { | public int hashCode() { | ||
int result = 37; | int result = 37; | ||
result = result * 31 + name.hashCode(); | result = result * 31 + name.hashCode(); | ||
result = result * 31 + | result = result * 31 + hp.hashCode(); | ||
return result; | return result; | ||
} | } | ||
} | } |