list快速处理,感觉代码逼格很高
先新建三个map,放进一个list
List<Map<String, Object>> list = new ArrayList();
Map map = new HashMap();
map.put("age", 1);
map.put("name", "name1");
Map map1 = new HashMap();
map1.put("age", 5);
map.put("name", "name2");
Map map2 = new HashMap();
map2.put("age", 3);
map.put("name", "name3");
list = Arrays.asList(map, map1, map2);
案例
1.得到list中的age大于2的map并组成一个新的集合(filter)
list.stream().filter(res->(int)res.get("age") > 2).collect(Collectors.toList());
2.得到list中的所有name组成一个新的集合(map)
list.stream().map(res -> (String)res.get("name")).collect(Collectors.toList())
3.得到list中的所有age总和(reduce)
得到age总和需要将所有的age拎出放进新的集合,然后在求和
List<integer> agetList = list.stream().map(res -> (int)res.get("age")).collect(Collectors.toList())
int sum = agetList.stream().reduce(0, (item1, item2) -> item1 += item2)
4.得到list中age最大和最小的map(max、min)
Map map11 = list.stream().max(Comparator.comparing(m -> (int) m.get("age"))).get();
Map map11 = list.stream().min(Comparator.comparing(m -> (int) m.get("age"))).get();
5.anyMatch、allMatch、noneMatch
//是否存在age>6
boolean a = list.stream().anyMatch(res->(int)res.get("age") > 6);
System.out.println(a); //false
//age是否全部大于1
boolean a = list.stream().allMatch(res->(int)res.get("age") > 1);
System.out.println(a); //false
//noneMatch跟allMatch相反,判断条件里的元素,所有的都不是,返回true