zoukankan      html  css  js  c++  java
  • java8 stream常用用法(转载)

    https://blog.csdn.net/y_k_y/article/details/84633001

    重点提一下anyMatch

           allMatch:接收一个 Predicate 函数,当流中每个元素都符合该断言时才返回true,否则返回false
            noneMatch:接收一个 Predicate 函数,当流中每个元素都不符合该断言时才返回true,否则返回false
            anyMatch:接收一个 Predicate 函数,只要流中有一个元素满足该断言则返回true,否则返回false
            findFirst:返回流中第一个元素
            findAny:返回流中的任意元素
            count:返回流中元素的总个数
            max:返回流中元素最大值
            min:返回流中元素最小值

    用法例子1

    List<Integer> list = Arrays.asList(1, 2, 3, 4, 5);
     
    boolean allMatch = list.stream().allMatch(e -> e > 10); //false
    boolean noneMatch = list.stream().noneMatch(e -> e > 10); //true
    // 下方代码的含义是,对list里的每一个数据,看看满不满足大于4,只要有一个满足,就算true
    boolean anyMatch = list.stream().anyMatch(e -> e > 4); //true Integer findFirst = list.stream().findFirst().get(); //1 Integer findAny = list.stream().findAny().get(); //1 long count = list.stream().count(); //5 Integer max = list.stream().max(Integer::compareTo).get(); //5 Integer min = list.stream().min(Integer::compareTo).get(); //1

    用法例子2

    List<Integer> result = Lists.newArrayList(1,2,3);
    List<Integer> ids = Lists.newArrayList(1,2);
    
    //  对result里面的每一个函数,调用ids.contains,看看ids里面有无result里的数,有的话,算true
    boolean a = result.stream().anyMatch(ids::contains);
  • 相关阅读:
    disconf 2.6.36 install
    Kubernetes 1.6.1 Kargo
    50个必备的实用jQuery代码段
    jquery封装插件
    java读取txt文件
    file 创建 txt文件
    想要学习web前端的童鞋们 可以看看哦 ! 我认为这几本书超不错
    jquery 杂记
    以文件流的方式 文件上传 下载
    陌生单词记录
  • 原文地址:https://www.cnblogs.com/lzh1043060917/p/14315146.html
Copyright © 2011-2022 走看看