整合stream操作和java8新特性

整合stream操作和java8新特性
数据
List teacher=List.of("自来水","大蛇丸","纲手","卡卡西","恩比德","唐斯");
List student=List.of("库里","垂杨","保罗","欧文","哈登");

1、获取第一个队伍中名字长度等于3 的成员
teacher.stream().filter(s->s.length()==3).collect(Collectors.toList()).forEach(System.out::println);

2、第一个队伍只要前三个人
teacher.stream().limit(3L).collect(Collectors.toList()).forEach(System.out::println);

3、第二个队伍姓“保罗”的
student.stream()

整合stream操作和java8新特性最先出现在Python成神之路

版权声明:
作者:主机优惠
链接:https://www.techfm.club/p/15034.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>