Object. hashCode [1]

オブジェクトのハッシュ・コード値を知らせます。

オーバーライドの定石

class Hero {
    String name;
    int hp; 

    public int hashCode() {
        int result = 37; 
        result = result * 31 + name.hashCode();
        result = result * 31 + hp.hashCode();
        return result;
    }   
}