HashMap을 다시 쓰는 equals와hashCode 방법

1030 단어 필기
먼저 HashMap의 키를 정의합니다. 이 클래스에서 equals와hashcode를 다시 쓰는 방법:
public class Key {
    String key;

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public Key(String key) {
        this.key = key;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Key key1 = (Key) o;
        return Objects.equals(key, key1.key);
    }

    @Override
    public int hashCode() {

        return key.hashCode();
    }
}

그런 다음
        HashMap map=new HashMap();
        Key key=new Key("hyb");
        map.put(key,key.getKey());
        Key key2=new Key("hyb");
        System.out.println(map.get(key2));

출력을 실행하려면 다음과 같이 하십시오.
hyb

Process finished with exit code 0

총괄: equals와hashCode 방법을 다시 썼기 때문에 맵에서 키2를 가져올 때 맵이 존재하는 키도hyb이므로 출력값은hyb이다

좋은 웹페이지 즐겨찾기