List stream은 Map의 키별로 그룹화 및 통계적 사용

797 단어 백그라운드
  public static void main(String[] args) {
        List list = new ArrayList();
        for (int i = 0; i < 10; i++) {
            Map map = new HashMap();
            map.put("id", i);
            map.put("name", " " + i);
            map.put("code", 10 + i);
            list.add(map);
        }
        //List stream   Map    key    value   
        int totalCode = list.stream().mapToInt(m -> (int) m.get("code")).sum();
        System.out.println("totalCode = " + totalCode);
        //List stream   Map     key   
        Map> map = list.stream().collect(Collectors.groupingBy(
                (Map m) -> (String)m.get("name"))
        );

    }

좋은 웹페이지 즐겨찾기