私は次のようなクラスを持っています
public class Hash {
int age;
int id;
String name;
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + id;
result = prime * result + ((name == null) ? 0 : name.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Hash other = (Hash) obj;
if (id != other.id)
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
return true;
}
}
これで、name と id の 2 つの属性のみを使用して .equals メソッドを生成しましたが、私の質問は次のとおりです。.hashCode() メソッドを実装する良い方法は何でしょう。
- 名前と ID のみを使用する
- 名前、年齢、ID の 3 つすべてを使用します。
両方の長所と短所は何ですか?