如何存储 HashMap<String, ArrayList<String>>在列表中?

编程入门 行业动态 更新时间:2024-10-21 04:10:53
本文介绍了如何存储 HashMap<String, ArrayList<String>>在列表中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我的 hashmap 将字符串存储为键,将数组列表存储为值.现在,我需要将其嵌入到列表中.也就是说,它将具有以下形式:

My hashmap stores the string as key and arraylist as the values. Now, I need to embed this into a list. That is, it will be of the following form:

List<HashMap<String, ArrayList<String>>>

这些是我使用的声明:

Map<String, ArrayList<String>> map = new HashMap<String, ArrayList<String>>(); ArrayList<String> arraylist = new ArrayList<String>(); map.put(key,arraylist); List<String> list = new ArrayList<String>();

谁能帮我在列表中使用哪种方法以及如何继续将我的地图存储到其中?

Can anyone help me which method and how to use in the list to proceed storing my map into it?

推荐答案

总是尝试在 Collection 中使用接口引用,这增加了更多的灵活性.下面的代码有什么问题?

Always try to use interface reference in Collection, this adds more flexibility. What is the problem with the below code?

List<Map<String,List<String>>> list = new ArrayList<Map<String,List<String>>>();//This is the final list you need Map<String, List<String>> map1 = new HashMap<String, List<String>>();//This is one instance of the map you want to store in the above list. List<String> arraylist1 = new ArrayList<String>(); arraylist1.add("Text1");//And so on.. map1.put("key1",arraylist1); //And so on... list.add(map1);//In this way you can add.

你可以像上面那样轻松地做到这一点.

You can easily do it like the above.

更多推荐

如何存储 HashMap&lt;String, ArrayList&lt;String&gt;&gt;在列表中?

本文发布于:2023-11-02 17:28:10,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1552977.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:列表中   lt   amp   HashMap   gt

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!