2

谁能让我知道这段代码出了什么问题?我要拔头发了!

如果我使用 HashMap 而不是 ConcurrentHashMap,则没有任何问题。代码使用JDK 5.0编译

public class MapTest {
    public Map<DummyKey, DummyValue> testMap = new ConcurrentHashMap<DummyKey, DummyValue>();

  public MapTest() {
      DummyKey k1 = new DummyKey("A");
      DummyValue v1 = new DummyValue("1");
      DummyKey k2 = new DummyKey("B");
      DummyValue v2 = new DummyValue("2");

      testMap.put(k1, v1);
      testMap.put(k2, v2);
  }

  public void printMap() {
      for(DummyKey key : testMap.keySet()){
          System.out.println(key.getKeyName());
          DummyValue val = testMap.get(key);
          System.out.println(val.getValue());
      }
  }

  public static void main(String[] args){
      MapTest main = new MapTest();
      main.printMap();
  }


  private static class DummyKey {
      private String keyName = "";

      public DummyKey(String keyName){
        this.keyName = keyName;
      }

      public String getKeyName() {
        return keyName;
      }

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

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

  private static class DummyValue {
      private String value = "";

      public DummyValue(String value){
         this.value = value;
      }

      public String getValue() {
        return value;
      }
   }
}

这是输出:

B
Exception in thread "main" java.lang.NullPointerException
at test.MapTest.printMap(MapTest.java:27)
at test.MapTest.main(MapTest.java:34)
4

4 回答 4

7

DummyKey.equals方法实现不正确,因为它testMap.get(key)总是返回 null。尝试这个

public boolean equals(Object o) {
    if (o instanceof DummyKey) {
        DummyKey other = (DummyKey) o;
        return keyName == null ? other.keyName == null : keyName.equals(other.keyName);
    }
    return false;
}

hashCode 也需要稍作改动才能与 equals 保持一致

public int hashCode() {
    return keyName == null ? 0 : keyName.hashCode();
}
于 2013-07-10T08:25:18.697 回答
1

正如其他人指出的那样,问题在于您覆盖哈希码和等于的方式。两个选项:1)只需删除哈希码和equals,它工作正常2)我让eclipse生成hashcode和equals的源代码,它工作正常。这就是我的日食为我带来的:

@Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result
                + ((keyName == null) ? 0 : keyName.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        DummyKey other = (DummyKey) obj;
        if (keyName == null) {
            if (other.keyName != null)
                return false;
        } else if (!keyName.equals(other.keyName))
            return false;
        return true;
    }
于 2013-07-10T14:47:03.557 回答
1

问题来自您的equalsin DummyKey

当您调用 时DummyValue val = testMap.get(key);,该hashcode函数会找到一个匹配项(两者相同keyname,它们的哈希码也相同)。然而,equals 返回 false,因为等于which 不等于自身,它实际上是 type :你没有正确比较!k1keyk1.keyname"A"keyDummyValue

因此,您需要修改您的 equals 函数:

@Override
public boolean equals(Object obj) {
    if (this == obj)
        return true;
    if (obj == null)
        return false;
    if (getClass() != obj.getClass())
        return false;
    DummyKey other = (DummyKey) obj;
    if (keyName == null) {
        if (other.keyName != null)
            return false;
    } else if (!keyName.equals(other.keyName))
        return false;
    return true;
}
于 2013-07-10T08:29:28.310 回答
1

请注意,如果您更改 hashCode(),那么您也必须更改 equals()。否则,您将遇到问题。如果 equals() 对两个项目返回 true,那么它们的 hashCode() 值必须相等!相反不是必需的,但对于更好的散列性能更可取。这是equals()和hashCode()的一个实现。

提示:如果您使用 eclipse,您可以利用其源代码生成功能为您创建正确的 hashCode() 和 equals() 方法。您唯一需要做的就是选择标识对象的实例变量。要在 Eclipse 中这样做,当您的源代码打开时,转到顶部的选项卡并选择“source”,然后选择“Generate hashCode() and equals()...”

  @Override
  public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + ((keyName == null) ? 0 : keyName.hashCode());

    return result;
  }

  Override
  public boolean equals(Object other) {
     if(this == other) return true; //for optimization
     if(! other instanceof this) return false; //also covers for when other == null
     return this.keyName == null ? other.keyName == null : this.keyName.equals(other.keyName);
  }
于 2013-07-10T08:47:10.250 回答