Java数组可以用作HashMap键吗
如果HashMap的键是字符串数组:
HashMap<String[], String> pathMap;
你可以使用新创建的字符串数组访问地图,还是必须是相同的String []对象?
pathMap = new HashMap<>(new String[] { "korey", "docs" }, "/home/korey/docs");String path = pathMap.get(new String[] { "korey", "docs" });
回答:
它必须是同一对象。Java中HashMap
使用equals()
和的比较键只有在两个对象相同时才相等。
如果你想要的值相等,然后写一个包装了自己的容器类String[]
,并提供了相应的语义equals()
和hashCode()
。在这种情况下,最好使容器不可变,因为更改对象的哈希码会对基于哈希的容器类造成破坏。
编辑
正如其他人指出的那样,List
HashMap<List<String>, String> pathMap;pathMap.put(
// unmodifiable so key cannot change hash code
Collections.unmodifiableList(Arrays.asList("korey", "docs")),
"/home/korey/docs"
);
// later:
String dir = pathMap.get(Arrays.asList("korey", "docs"));
以上是 Java数组可以用作HashMap键吗 的全部内容, 来源链接: utcz.com/qa/409450.html