hashCode() method using HashMap

假如想象 提交于 2019-12-12 01:43:59

问题


Do I have to override hashCode() method, if I'm going to customize HashMap?

UPD: For example:

import java.util.HashMap;
import java.util.Objects;

/**
 *
 * @author dolgopolov.a
 */
public class SaltEntry {

    private long time;
    private String salt;

    /**
     * @return the time
     */
    public long getTime() {
        return time;
    }

    /**
     * @param time the time to set
     */
    public void setTime(long time) {
        this.time = time;
    }

    /**
     * @return the salt
     */
    public String getSalt() {
        return salt;
    }

    /**
     * @param salt the salt to set
     */
    public void setSalt(String salt) {
        this.salt = salt;
    }

    public boolean equals(SaltEntry o) {
        if (salt.equals(o.getSalt()) && time == o.getTime()) {
            return true;
        } else {
            return false;
        }
    }

    public int hashCode() {
        return Objects.hash(String.valueOf(salt + time));
    }

    public static void main(String[] args) {
        SaltEntry se1 = new SaltEntry(), se2 = new SaltEntry();
        se1.setSalt("1");
        se2.setSalt("1");
        se1.setTime(1);
        se2.setTime(1);
        HashMap<String, SaltEntry> hm = new HashMap<String, SaltEntry>();
        hm.put("1", se1);
        hm.put("2", se2);
        System.out.println(hm.get("1").getSalt());

    }

}

回答1:


You have to override both hashCode() and equals() of the class A if you're going to use A as key in HashMap and need another form of equality than reference equality.

A little trick to implements hashcode() since Java 7: use Objects#hash(Object...).
For example:

public class A {
  Object attr1, attr2, /* ... , */ attrn ;

  @Override
  public int hashcode() {
    return Objects.hash(attr1, attr2, /* ... , */ attrn);
  }
}


来源:https://stackoverflow.com/questions/23780310/hashcode-method-using-hashmap

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!