前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >map合并,相同键对应的值相加

map合并,相同键对应的值相加

作者头像
河岸飞流
发布2019-08-09 17:11:16
4K0
发布2019-08-09 17:11:16
举报
文章被收录于专栏:开发杂记

最近在做统计钱的计算时遇到的一个需求,需要将一个大类别下的每一种钱进行特定的运算然后获得六年的钱,最后将这些钱按照年份进行汇总,获得总得大类型的六年的钱,在这个过程中采用了这种方法,每次算得钱放在map中,然后将map进行合并,写篇随笔mark下。

代码语言:javascript
复制
public class CombineMap {
public static Map<Integer,Integer> addTo(Map<Integer,Integer> target, HashMap<Integer,Integer>plus) {
    Object[] os = plus.keySet().toArray();
    Integer key;
    for (int i=; i<os.length; i++) {
        key = (Integer)os[i];
        if (target.containsKey(key)) 
            target.put(key, target.get(key) + plus.get(key));
        else
            target.put(key, plus.get(key));
    }
    return target;
}

public static void main(String[] args) {
            // 获得arm,body,head,leg,wst
            // ......
    Map<Integer,BigDecimal> all = new TreeMap<Integer,BigDecimal>();
      all.put(, new BigDecimal());
      all.put(, new BigDecimal());
      all.put(, new BigDecimal());
      all.put(, new BigDecimal());
      all.put(, new BigDecimal());
    
      Map<Integer,BigDecimal> plus = new HashMap<Integer,BigDecimal>();
      plus.put(, new BigDecimal());
      plus.put(, new BigDecimal());
      plus.put(, new BigDecimal());
      plus.put(, new BigDecimal());
      plus.put(, new BigDecimal());
    
      all = addTo(all, plus);
      all = addTo(all, plus);
      List<BigDecimal> tepList;
      tepList = new ArrayList<BigDecimal>();
      for (Object s : all.keySet()) {
          System.out.print("year : " + s);
          System.out.println("  values : " + all.get(s).doubleValue());
          tepList.add(all.get(s));
      }
}
}
 
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016-08-05 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档