long lCount2 = list.stream().filter(employee -> employee.getSalary() == 2000).count();
1、 .count()是获取符合条件的有多少个。
2、 list.stream().map().collect(Collectors.toList()); 这个就是在遍历的过程中然后执行 map() 中的方法
List<String> list= Arrays.asList("a", "b", "c", "d");
List<String> collect =list.stream().map(String::toUpperCase).collect(Collectors.toList());
System.out.println(collect); //[A, B, C, D]
List<Integer> num = Arrays.asList(1,2,3,4,5);
List<Integer> collect1 = num.stream().map(n -> n * 2).collect(Collectors.toList());
System.out.println(collect1); //[2, 4, 6, 8, 10]