集合嵌套
map里面嵌套list
Map<String, List<String>> map = new HashMap<>(16);
List<String> cityList = new ArrayList<>(10);
cityList.add("南昌");
cityList.add("赣州");
cityList.add("九江");
cityList.add("新余");
cityList.add("抚州");
map.put("江西", cityList);
cityList = new ArrayList<>(10);
cityList.add("武汉1");
cityList.add("武汉2");
cityList.add("武汉3");
cityList.add("武汉4");
cityList.add("武汉5");
map.put("湖北", cityList);
List<String> list = map.get("江西");
System.out.println(list);
List<String> list1 = map.get("湖北");
System.out.println(list1);
list里面嵌套map
Map<String,Object> map1=new HashMap<>(16);
map1.put("id",20173627);
map1.put("name","路路");
map1.put("age",23);
map1.put("gender",'女');
Map<String, Object> map2 = new HashMap<>(16);
map2.put("id", 20173627);
map2.put("name", "路路");
map2.put("age", 23);
map2.put("gender", '女');
Map<String, Object> map3 = new HashMap<>(16);
map3.put("id", 20173627);
map3.put("name", "路路");
map3.put("age", 23);
map3.put("gender", '女');
List<Map> mapList=new ArrayList<>(10);
mapList.add(map1);
mapList.add(map2);
mapList.add(map3);
mapList.forEach(System.out::println);
标签:map,cityList,put,map2,嵌套,add,集合,new
From: https://www.cnblogs.com/Liku-java/p/16917998.html