java8使用Stream API方法总结

Stream是java8中处理集合的关键抽象概念,它可以指定您希望对集合进行的操作,可以执行非常复杂的查找、过滤和映射数据等操作。使用Stream API对集合数据进行操作,就类似于使用SQL执行的数据库查询。

Stream 的三个操作步骤

1、创建Stream.

得到Stream流的第一种方式:

可以通过Collection系列集合提供提供的Stream()或parallelStream

  @Test

  public void test1() {

    //可以通过Collection系列集合提供提供的Stream()或parallelStream

    List list = new ArrayList<>();

    Stream stream = list.stream();

  }

java8使用Stream API方法总结_第1张图片

通过Arrays中的静态方法stream()方法得到数组流

 //通过Arrays中的静态方法stream()方法得到数组流

    Dept[] depts = new Dept[10];

    Stream deptStream = Arrays.stream(depts);

java8使用Stream API方法总结_第2张图片

通过Stream类中的静态方法of()Stream.of("aa","bb","cc");

java8使用Stream API方法总结_第3张图片

创建无限流 //迭代 Stream integerStream = Stream.iterate(0,(x) -> x+2);

java8使用Stream API方法总结_第4张图片

2、中间操作

//创建无限流 //迭代 Stream integerStream = Stream.iterate(0,(x) -> x+2); //中间操作 integerStream.limit(10).forEach(System.out::println);

java8使用Stream API方法总结_第5张图片

6、

查看运行结果

java8使用Stream API方法总结_第6张图片

3、终止操作

    //创建无限流

    //迭代

    Stream integerStream = Stream.iterate(0,(x) -> x+2);

    //终止操作

    integerStream.forEach(System.out::println);

java8使用Stream API方法总结_第7张图片

查看运行结果

java8使用Stream API方法总结_第8张图片

你可能感兴趣的:(java8使用Stream API方法总结)