List<HashMap> 指定数据求和:
List<HashMap> kk = new ArrayList<>();
Map mmm = new HashMap<>();
mmm.put("a", 1);
mmm.put("b", 4);
kk.add((HashMap) mmm);
Map mm = new HashMap<>();
mm.put("a", 2);
mm.put("b", 5);
kk.add((HashMap) mm);
bind.put("m", kk);
int i = (int) kk.stream().mapToInt((n)->Integer.parseInt(n.get("b").toString())).sum();
System.out.print(i);
心得: mapToInt() 字面意思
n 遍历时 得到的HashMap 对象
Integer.parseInt(n.get("b").toString()) 求和前用于提取需要求和的数