編集の要約なし |
|||
7行目: | 7行目: | ||
String name; | String name; | ||
int hp; | int hp; | ||
public int hashCode() { | public int hashCode() { | ||
int result = 37; | int result = 37; |
編集の要約なし |
|||
7行目: | 7行目: | ||
String name; | String name; | ||
int hp; | int hp; | ||
public int hashCode() { | public int hashCode() { | ||
int result = 37; | int result = 37; |
オブジェクトのハッシュ・コード値を知らせます。
class Hero { String name; int hp; public int hashCode() { int result = 37; result = result * 31 + name.hashCode(); result = result * 31 + this.hp; return result; } }