-2

我在哈希图中添加了 2 个对象,但 2 个值的键是相同的。甚至实现了 hashcode 和 equals 方法。但它仍然显示 2 个值而不是 3 个。

代码:

package test1;

import java.util.HashMap;

public class HashMapDemo {

    int i;
    String abc;
    HashMapDemo(int a,String b){
        i=a;
        abc=b;
    }
    public String toString(){
        return i +abc;
    }

    public static void main(String[] args){
        HashMapDemo obj1= new HashMapDemo(2,"hello");
        HashMapDemo obj2= new HashMapDemo(3,"world");
        HashMapDemo obj3= new HashMapDemo(4,"around");
        toDos t1=new toDos("aa");
        toDos t2=new toDos("bb");
        toDos t3=new toDos("aa");
        HashMap test=new HashMap();
        test.put(t1,obj1);
        test.put(t2, obj2);
        test.put(t3,obj3);
        System.out.println(test.size()+""+test.get(obj2)+test);

    }
}

按键代码:

package test1;

import java.util.HashMap;

class toDos
 {

        String a;
    toDos(String b){
        a=b;
    }
    public boolean equals(Object obj){
        System.out.println("call of equals");
        if((toDos)obj instanceof toDos & (toDos)obj !=null){
            toDos temp = (toDos) obj;
            if(temp.a.equals(this.a)){
                return true;
            }
        }
        return false;

    }
    public int hashCode(){
        System.out.println("call of hasCode");
        return (a!=null)? a.hashCode():0;
    }

    public String toString(){
        return a;
    }   
}
4

2 回答 2

1

根据你的class toDosifString a相同的 equals 方法,那么两个对象都是相同的。

HashMap test=new HashMap();
test.put(t1,obj1); // "aa"
test.put(t2,obj2); // "bb"
test.put(t3,obj3); //"aa"

因此 Obj1 和 obj2 都将被视为同一个对象,因此您的旧值 obj1 将被替换为 obj3。

于 2013-02-04T07:18:21.123 回答
0

似乎t1.equals(t3)- 因此,插入t3覆盖了第一个插入的条目。

在 aHashMap中,每个不同的键都有一个关联的值 - 因为t1t3彼此相等 - 你只有 2 个不同的键。

作为旁注 - 您应该避免使用原始类型并尽可能使用泛型类型。

于 2013-02-04T07:13:31.280 回答