gpt4 book ai didi

java - 在 HashMap 值中存储两个值

转载 作者:行者123 更新时间:2023-12-02 01:19:33 25 4
gpt4 key购买 nike

我想在 hashMap 的 value 字段中存储两个值。

例如:

Key = 100, Value = 10, 20

我想以某种方式存储,以便我可以使用 key 修改 hashMap Value 值?

假设如果我想将 10 修改为 30,那么 map 中的条目将是

Key = 100, Value = 30, 20

有什么方法可以让我使用 hashmap 的键独立控制两个 Value 值吗?

最佳答案

您可以使用com.google.common.collect.Multimap

示例:

Multimap<Integer, Integer> map = ArrayListMultimap.create();
map.put(100, 10);
map.put(100, 20);

关于java - 在 HashMap 值中存储两个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57975416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com