繁体   English   中英

在Java HashMap中使用对象作为键

[英]Using Objects as keys in Java HashMap

package test;

import java.util.HashMap;

public class test {
    public static void main(String args[]) {
        HashMap<ID, String> h = new HashMap<ID, String> ();
        String b;

        ID id1 = new ID(100);
        ID id2 = new ID(200);
        ID id3 = new ID(200);

        h.put(id1, "apple");
        h.put(id2, "pear");

        **System.out.println(h.containsKey(id3));**
    }
}

class ID {
    Integer code;

    public ID(Integer id) {
        this.code = id;
    }

    @Override
    public int hashCode()
    {
        return code.hashCode();
    }

    @Override
    public boolean equals(Object o)
    {
        return this.code.equals(o);
    }
}

该程序的输出是“假”。 我无法理解这个结果。 我实现了hashCode和equals,它们被覆盖了。 我不知道如何解决。 如何在java HashMap中使用对象作为键?

你的equals实现是错误的:

public boolean equals(Object o)
{
    return this.code.equals(o); // this will never return true,
                                // since you are comparing an Integer instance
                                // to an ID instance
}

您应该将此代码与其他代码进行比较:

public boolean equals(Object o)
{
    if (!(o instanceof ID))
        return false;
    ID oid = (ID) o;
    return this.code.equals(oid.code);
}

错误的equals方法的实现。 根据您的实现,它执行Integer类equals方法。 我们应该在没有执行库类equals方法的情况下处理逻辑。

@Override 
public boolean equals(Object o) {
    if (o == null || ((o instanceof ID) && o.hashCode() != this.hashCode())) {
        return false;
    }
    return true;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM