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

Need a Java map/table with multiple keys to one value. Value is commonly altered(需要一个对一个值具有多个键的 Java 映射/表.值通常会改变)
本文介绍了需要一个对一个值具有多个键的 Java 映射/表.值通常会改变的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

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

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.

推荐答案

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 }  

如果您想要一个单一键与多个值相关联的地图,这称为 多地图,您可以从 google 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 google java collections API or from Apache's commons-collections

这篇关于需要一个对一个值具有多个键的 Java 映射/表.值通常会改变的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Show progress during FTP file upload in a java applet(在 Java 小程序中显示 FTP 文件上传期间的进度)
How to copy a file on the FTP server to a directory on the same server in Java?(java - 如何将FTP服务器上的文件复制到Java中同一服务器上的目录?)
FTP zip upload is corrupted sometimes(FTP zip 上传有时会损坏)
Enable logging in Apache Commons Net for FTP protocol(在 Apache Commons Net 中为 FTP 协议启用日志记录)
Checking file existence on FTP server(检查 FTP 服务器上的文件是否存在)
FtpClient storeFile always return False(FtpClient storeFile 总是返回 False)