JAVA8中lamda表达式对集合的操作
一些自己整理的demo,便于回顾。1.遍历和处理业务 List<Integer> listScore = Arrays.asList(5, 20); //遍历泛型为基本类型直接用使用接口 listScore.stream().forEach(System.out::println); //遍历自定义的类 只能先定义对象student list.stream().forEach(student -&g