item 11) equals 재정의 시 hashCode도 재정의하라
hashCode 메서드의 일반 규약
hashCode 메서드 재정의
@Override
public int hashCode() {
int result = Short.hashCode(areaCode);
result = 31 * result + Short.hashCode(prefix);
result = 31 * result + Short.hashCode(lineNum);
return result;
}Last updated