在 Java 中,您可能会遇到一种场景,您需要在 Map 中为某个键存储多个字符串值。然而,Java 的标准 Map 接口不支持为单个键存储多个值。
问题:
是否可以设置两个以上的键值对地图?例如,您可以创建一个如下所示的 Map 结构:
<code class="java">Map<String,String,String,String></code>
其中每个键(“数字”)与多个值(“姓名”、“地址”、“电话”)关联,这些值是一起显示吗?
答案:
这个问题的解决方案是避免使用多个键,而是使用一个对象来保存各个字符串值。考虑创建一个封装姓名、地址和电话号码的 ContactInformation 类:
<code class="java">public class ContactInformation { private String name; private String address; private String phone; // Constructor and getters/setters }</code>
然后您可以使用此对象作为 Map 中的值:
<code class="java">Map<String, ContactInformation> contacts = new HashMap<>(); ContactInformation contact = new ContactInformation(); contact.setName("John Doe"); contact.setAddress("123 Main Street"); contact.setPhone("(555) 123-4567"); contacts.put("number", contact);</code>
当您需要时要访问这些值,您可以从地图中检索 ContactInformation 对象并访问其属性:
<code class="java">ContactInformation contact = contacts.get("number"); String name = contact.getName(); String address = contact.getAddress(); String phone = contact.getPhone();</code>
通过使用对象封装多个字符串值,您可以避免 Java 的 Map 接口的限制并有效地存储并检索相关信息。
以上是如何在 Java 映射中存储单个键的多个字符串值?的详细内容。更多信息请关注PHP中文网其他相关文章!