最近在做統計錢的計算時遇到的一個需求,需要將一個大類別下的每一種錢進行特定的運算然後獲得六年的錢,最後將這些錢按照年份進行彙總,獲得總得大類型的六年的錢,在這個過程中採用了這種方法,每次算得錢放在map中,然後將map進行合併,寫篇隨筆mark下。 public class CombineMap { ...
最近在做統計錢的計算時遇到的一個需求,需要將一個大類別下的每一種錢進行特定的運算然後獲得六年的錢,最後將這些錢按照年份進行彙總,獲得總得大類型的六年的錢,在這個過程中採用了這種方法,每次算得錢放在map中,然後將map進行合併,寫篇隨筆mark下。
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=0; 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(2016, new BigDecimal(10)); all.put(2017, new BigDecimal(10)); all.put(2018, new BigDecimal(10)); all.put(2019, new BigDecimal(10)); all.put(2020, new BigDecimal(10)); Map<Integer,BigDecimal> plus = new HashMap<Integer,BigDecimal>(); plus.put(2016, new BigDecimal(1)); plus.put(2017, new BigDecimal(2)); plus.put(2018, new BigDecimal(3)); plus.put(2019, new BigDecimal(4)); plus.put(2020, new BigDecimal(5)); 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)); } } }