gpt4 book ai didi

java - 我想用相应的键遍历 HashMap 中的键和列表我想要打印值(列表)

转载 作者:行者123 更新时间:2023-12-02 03:21:24 25 4
gpt4 key购买 nike

我想遍历 HashMap 中的键和列表使用相应的 key 。

想要打印值(列表)。有人可以帮忙吗?

public class Demo {

public static void main(String[] args) {
HashMap<String,List<String> > hashmapobj = new HashMap<String,List<String>();
List<String> listobj=new ArrayList<String>();
listobj.add("yellow");
listobj.add("green");
listobj.add("orange");
listobj.add("blue");

hashmapobj.put("color", listobj);
hashmapobj.put("light", listobj);

}

}

最佳答案

for(Map.Entry<String, List<String>> items: hashmapobj.entrySet()){
System.out.print(items.getKey());
List<String> list = items.getValue();
for(String s : list){
System.out.print(" " + s);
}
System.out.println();
}

这将打印您的 key然后存储在 List<String> 中的所有值在同一条线上。每个键:值都有自己的行。

关于java - 我想用相应的键遍历 HashMap 中的键和列表我想要打印值(列表),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39560414/

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