// Java: int total = employees.stream() .collect(Collectors.summingInt(Employee::getSalary)));
// 科特林: val total =employees.sumBy{it.salary}