gpt4 book ai didi

java - 如何将列表中的多个值放入 M​​ap 中

转载 作者:行者123 更新时间:2023-12-02 06:55:13 30 4
gpt4 key购买 nike

我有一个列表gotitems

ArrayList<String> gotitems = new ArrayList<String>();

我需要将该列表放入名为 map 的 HashMap 中。

Map<String,String> map = new HashMap<String,String>();

我试过这个:

for(String s:gotitems){
map.put("a",s);
}

gotitems 包含:

First
Second
Third

但是输出:

System.out.println(map.values());

给出:

Third
Third
Third

我什至尝试过这个:

for(String s:gotitems){
for(int j=0;j<gotitems.size();j++){
map.put("a"+j,s);
}
}

但这也不起作用。

我在这里做错了什么?

最佳答案

根据 Map put(K,V) method docs

Associates the specified value with the specified key in this map (optional operation). If the map previously contained a mapping for the key, the old value is replaced by the specified value.

您每次都在此处过度验证 key 。

 for(String s:gotitems){
map.put("a",s);
}

每次更改 key 并尝试

for(String s:gotitems){
map.put(s,s);
}

关于java - 如何将列表中的多个值放入 M​​ap 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17464365/

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