본문 바로가기
Cheat

java cheat

by zsgg 2018. 5. 15.

equals, hashCode 상속 lib로 간단히

Java 의 equlas 과 hashCode, 동등성과 동일성

@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof Type)) {
        return false;
    }
    Type type = (Type) obj;

    return new EqualsBuilder()
            .append(this.1, type.1)
            .isEquals();
}

@Override
public int hashCode() {
    return Objects.hash(~);
}

'Cheat' 카테고리의 다른 글

life cheat  (0) 2019.08.25
css cheat  (0) 2018.04.28
junit cheat  (0) 2018.04.28
linux cheat  (0) 2018.04.28
javascript cheat  (0) 2018.04.28

댓글