如果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()和的比较键只有在两个对象相同时才相等。
Java中HashMap
equals()
如果你想要的值相等,然后写一个包装了自己的容器类String[],并提供了相应的语义equals()和hashCode()。在这种情况下,最好使容器不可变,因为更改对象的哈希码会对基于哈希的容器类造成破坏。
String[]
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"));