java 中的Takewhile方法 和Dropwhile方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 中的Takewhile方法 和Dropwhile方法相关的知识,希望对你有一定的参考价值。
Takewhile方法:Java 8提供了根据给出的条件检查每个元素的过滤器功能。举例来说,假设要在流中找到所有小于20的数字,可能会出现一下情况:在其顺序执行过程中,只能得到过滤条件触发之前输入的数字,后面的输入全部都会被舍弃。也就是说当第一次过滤条件被触发时,会忽略剩余的输入然后执行返回或退出命令。
public static void main(String[] args)
List<Integer> numberList= Arrays.asList(1,3,5,8,10,20,35,2,5,7);
numberList.stream().takeWhile(num->num<=20).forEach(System.out::println);
Dropwhile方法:它与takewhile方法正相反。Dropwhile方法会丢弃过滤条件触发之前的所有输入,一旦过滤条件触发,就输出之后的所有数据。
public static void main(String[] args)
List<Integer> numberList= Arrays.asList(1,3,5,8,10,20,35,2,5,7);
numberList.stream().dropWhile(num->num<=20).forEach(System.out::println);
以上是关于java 中的Takewhile方法 和Dropwhile方法的主要内容,如果未能解决你的问题,请参考以下文章
增强 Stream 接口的 distinct 方法的一些思考