• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

需要对值具有多个键的 Java 映射/表.值通常会改变

用户头像
it1352
帮助20

问题说明

我需要的是一个允许多个键访问单个对象的集合.

What I need is a collection which allows multiple keys to access a single object.

我需要对此对象进行频繁的更改.

I need to apply frequent alterations to this object.

它还必须对 500k 个条目有效.

It also must be efficient for 500k entries.

正确答案

#1

java.util.Map<K,V> 的任何实现都可以做到这一点 - 没有限制 在单独的键下可以添加特定值多少次:

Any implementation of java.util.Map<K,V> will do this - there is no restriction on how many times a particular value can be added under separate keys:

Map<String,Integer> m = new HashMap<String, Integer>();
m.put("Hello", 5);
m.put("World", 5);
System.out.println(m); // { Hello->5, World->5 }  

如果您想要一个单一键与多个值相关联的地图,这称为 多地图,您可以从 谷歌 java 集合 API 或来自 Apache的commons-collections

If you want a map where a single key is associated with multiple values, this is called a multi-map and you can get one from the 谷歌 java collections API or from Apache's commons-collections

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tangicbbf
系列文章
更多 icon
同类精品
更多 icon
继续加载