欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java8使用Stream API方法总结

程序员文章站 2024-02-23 11:42:40
stream是java8中处理集合的关键抽象概念,它可以指定您希望对集合进行的操作,可以执行非常复杂的查找、过滤和映射数据等操作。使用stream api对集合数据进行操作...

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

stream 的三个操作步骤

1、创建stream.

得到stream流的第一种方式:

可以通过collection系列集合提供提供的stream()或parallelstream

  @test

  public void test1() {

    //可以通过collection系列集合提供提供的stream()或parallelstream

    list<string> list = new arraylist<>();

    stream<string> stream = list.stream();

  }

java8使用Stream API方法总结

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

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

    dept[] depts = new dept[10];

    stream<dept> deptstream = arrays.stream(depts);

java8使用Stream API方法总结

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

java8使用Stream API方法总结

创建无限流 //迭代 stream<integer> integerstream = stream.iterate(0,(x) -> x+2);

java8使用Stream API方法总结

2、中间操作

//创建无限流 //迭代 stream<integer> integerstream = stream.iterate(0,(x) -> x+2); //中间操作 integerstream.limit(10).foreach(system.out::println);

java8使用Stream API方法总结

6、

查看运行结果

java8使用Stream API方法总结

3、终止操作

    //创建无限流

    //迭代

    stream<integer> integerstream = stream.iterate(0,(x) -> x+2);

    //终止操作

    integerstream.foreach(system.out::println);

java8使用Stream API方法总结

查看运行结果

java8使用Stream API方法总结