List<Map<String, Integer>> 遍历相加
List<Map<String,Integer>>list1=[{d=2,a=3,c=1,b=1},{d=21,a=34,c=12,b=13}]想让d、a、c、d遍历相加...
List<Map<String, Integer>> list1 = [{d=2, a=3, c=1, b=1}, {d=21, a=34, c=12, b=13}]
想让 d 、a、c、d 遍历 相加后 再放到新的 List<Map<String, Integer>> list2 里
请java高手完整代码给出来 展开
想让 d 、a、c、d 遍历 相加后 再放到新的 List<Map<String, Integer>> list2 里
请java高手完整代码给出来 展开
展开全部
List<Map<String, Integer>> list1 = new ArrayList<Map<String, Integer>>();
Map<String, Integer> m1 = new HashMap<String, Integer>();
m1.put("a", 3);
m1.put("b", 1);
m1.put("c", 1);
m1.put("d", 2);
list1.add(m1);
Map<String, Integer> m2 = new HashMap<String, Integer>();
m2.put("a", 34);
m2.put("b", 13);
m2.put("c", 12);
m2.put("d", 21);
list1.add(m2);
List<Map<String, Integer>> list2 = new ArrayList<Map<String, Integer>>();
int a = 0;
int b = 0;
int c = 0;
int d = 0;
for(int i=0; i<list1.size(); i++) {
Map<String, Integer> m = list1.get(i);
a += m.get("a");
b += m.get("b");
c += m.get("c");
d += m.get("d");
}
Map<String, Integer> m = new HashMap<String, Integer>();
m.put("a", a);
m.put("b", b);
m.put("c", c);
m.put("d", d);
list2.add(m);
Map<String, Integer> m1 = new HashMap<String, Integer>();
m1.put("a", 3);
m1.put("b", 1);
m1.put("c", 1);
m1.put("d", 2);
list1.add(m1);
Map<String, Integer> m2 = new HashMap<String, Integer>();
m2.put("a", 34);
m2.put("b", 13);
m2.put("c", 12);
m2.put("d", 21);
list1.add(m2);
List<Map<String, Integer>> list2 = new ArrayList<Map<String, Integer>>();
int a = 0;
int b = 0;
int c = 0;
int d = 0;
for(int i=0; i<list1.size(); i++) {
Map<String, Integer> m = list1.get(i);
a += m.get("a");
b += m.get("b");
c += m.get("c");
d += m.get("d");
}
Map<String, Integer> m = new HashMap<String, Integer>();
m.put("a", a);
m.put("b", b);
m.put("c", c);
m.put("d", d);
list2.add(m);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询