java Match如何使用

概念

1、各种Match操作可用于判断给定的Predicate是否符合Stream的要素。

2、Match操作是终端操作,返回布尔值。

实例

booleananyStartsWithA=
stringCollection
.stream()
.anyMatch((s)->s.startsWith("a"));

System.out.println(anyStartsWithA);//true

booleanallStartsWithA=
stringCollection
.stream()
.allMatch((s)->s.startsWith("a"));

System.out.println(allStartsWithA);//false

booleannoneStartsWithZ=
stringCollection
.stream()
.noneMatch((s)->s.startsWith("z"));

System.out.println(noneStartsWithZ);//true

以上就是java Match的使用,希望对大家有所帮助。更多编程基础知识学习:python学习网

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容