码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 【JDK 8-集合框架】5.4 allMatch 和 anyMatch 函数


    一、allMatch 函数

    二、anyMatch 函数

    三、其它函数学习

    四、实战

    > 执行结果


    一、allMatch 函数

    • 检查是否 匹配所有元素,返回 true

    二、anyMatch 函数

    • 检查是否 至少匹配一个元素,返回 true

    三、其它函数学习

    • 看源码 + 入参,返回值 学习

    • 如 noneMatch

    1. /**
    2. * Returns whether no elements of this stream match the provided predicate.
    3. * May not evaluate the predicate on all elements if not necessary for
    4. * determining the result. If the stream is empty then {@code true} is
    5. * returned and the predicate is not evaluated.
    6. *
    7. *

      This is a short-circuiting

    8. * terminal operation.
    9. *
    10. * @apiNote
    11. * This method evaluates the universal quantification of the
    12. * negated predicate over the elements of the stream (for all x ~P(x)). If
    13. * the stream is empty, the quantification is said to be vacuously satisfied
    14. * and is always {@code true}, regardless of P(x).
    15. *
    16. * @param predicate a non-interfering,
    17. * stateless
    18. * predicate to apply to elements of this stream
    19. * @return {@code true} if either no elements of the stream match the
    20. * provided predicate or the stream is empty, otherwise {@code false}
    21. */
    22. boolean noneMatch(Predicatesuper T> predicate);

    四、实战

    1. import java.util.Arrays;
    2. import java.util.List;
    3. public class MatchDemo {
    4. public static void main(String[] args) {
    5. List list = Arrays.asList("Spring Boot", "Python", "微服务", "高并发", "Redis", "MongoDB");
    6. boolean result = list.stream()
    7. .allMatch(obj -> obj.length() > 7);
    8. System.out.println(">> allMatch() :全匹配长度大于7");
    9. System.out.println(result + "\n");
    10. result = list.stream()
    11. .anyMatch(obj -> obj.length() > 1);
    12. System.out.println(">> anyMatch() :部分匹配长度大于7");
    13. System.out.println(result + "\n");
    14. result = list.stream()
    15. .noneMatch(obj -> obj.length() > 20);
    16. System.out.println(">> noneMatch() :没有一个匹配长度大于20");
    17. System.out.println(result + "\n");
    18. }
    19. }

    > 执行结果

  • 相关阅读:
    从 Google 离职,前Go 语言负责人跳槽小公司
    机器学习(20)---神经网络详解
    从Matlab实例学习差分进化算法
    经过半年的努力,终于成为了谷歌开发者专家(GDE)
    GBase 8c V3.0.0数据类型——HLL函数和操作符(内置函数)
    Redis数据库安装(Windows)
    leetcode 26
    动态爱心-详细教程(小白也会)(HTML)
    advanced installer 14.9重新封包
    【Vue】VueX 的语法详解(3)
  • 原文地址:https://blog.csdn.net/ladymorgana/article/details/133035354
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号