List分类成为Map,使用list.forEach方法

  Map> map= new HashMap<>();
  List list = 动态查询到的list;
  if(list != null && list .size() > 0) {
	list .forEach(obj->{
		if(map.containsKey("key")) {
			List list1 = map.get("key");
			list1 .add(obj);
		}else {
			List list1 = new ArrayList<>();
			list1.add(obj);
			map.put("key", list1);
		}
	});
  }
 
  

                            
                        
                    
                    
                    

你可能感兴趣的:(List,map,list.forEach)