-
求解 java8 stream api 的这种问题的写法
2017-10-17 13:27Map ret = sumReports.stream().collect(toMap(o -> o.getProjectId(), Function.identity(), (a, b) -> new SumReport(a.getProjectId(), a.getProjectName(), a.getServiceId(), a.getServiceName(), a.getInvokeTime() + b.getInvokeTime(), a.getErrorTime() + b.getErrorTime())));