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高手完整代码给出来
展开
 我来答
wuqing0826
2014-05-26 · TA获得超过692个赞
知道小有建树答主
回答量:753
采纳率:0%
帮助的人:726万
展开全部
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);
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式