zoukankan      html  css  js  c++  java
  • java8 Stream API 的操作步骤

    *
     * 一、Stream API 的操作步骤:
     * 
     * 1. 创建 Stream
     * 
     * 2. 中间操作
     * 
     * 3. 终止操作(终端操作)
     */
    public class TestStreamaAPI {
     
     //1. 创建 Stream
     @Test
     public void test1(){
      //1. Collection 提供了两个方法  stream() 与 parallelStream()
      List<String> list = new ArrayList<>();
      Stream<String> stream = list.stream(); //获取一个顺序流
      Stream<String> parallelStream = list.parallelStream(); //获取一个并行流
      
      //2. 通过 Arrays 中的 stream() 获取一个数组流
      Integer[] nums = new Integer[10];
      Stream<Integer> stream1 = Arrays.stream(nums);
      
      //3. 通过 Stream 类中静态方法 of()
      Stream<Integer> stream2 = Stream.of(1,2,3,4,5,6);
      
      //4. 创建无限流
      //迭代
      Stream<Integer> stream3 = Stream.iterate(0, (x) -> x + 2).limit(10);
      stream3.forEach(System.out::println);
      
      //生成
      Stream<Double> stream4 = Stream.generate(Math::random).limit(2);
      stream4.forEach(System.out::println);
      
     }
     
     //2. 中间操作
     List<Employee> emps = Arrays.asList(
       new Employee(102, "李四", 59, 6666.66),
       new Employee(101, "张三", 18, 9999.99),
       new Employee(103, "王五", 28, 3333.33),
       new Employee(104, "赵六", 8, 7777.77),
       new Employee(104, "赵六", 8, 7777.77),
       new Employee(104, "赵六", 8, 7777.77),
       new Employee(105, "田七", 38, 5555.55)
     );
     
     /*
       筛选与切片
      filter——接收 Lambda , 从流中排除某些元素。
      limit——截断流,使其元素不超过给定数量。
      skip(n) —— 跳过元素,返回一个扔掉了前 n 个元素的流。若流中元素不足 n 个,则返回一个空流。与 limit(n) 互补
      distinct——筛选,通过流所生成元素的 hashCode() 和 equals() 去除重复元素
      */
     
     //内部迭代:迭代操作 Stream API 内部完成
     @Test
     public void test2(){
      //所有的中间操作不会做任何的处理
      Stream<Employee> stream = emps.stream()
       .filter((e) -> {
        System.out.println("测试中间操作");
        return e.getAge() <= 35;
       });
      
      //只有当做终止操作时,所有的中间操作会一次性的全部执行,称为“惰性求值”
      stream.forEach(System.out::println);
     }
     
     //外部迭代
     @Test
     public void test3(){
      Iterator<Employee> it = emps.iterator();
      
      while(it.hasNext()){
       System.out.println(it.next());
      }
     }
     
     @Test
     public void test4(){
      emps.stream()
       .filter((e) -> {
        System.out.println("短路!"); // &&  ||
        return e.getSalary() >= 5000;
       }).limit(3)
       .forEach(System.out::println);
     }
     
     @Test
     public void test5(){
      emps.parallelStream()
       .filter((e) -> e.getSalary() >= 5000)
       .skip(2)
       .forEach(System.out::println);
     }
     
     @Test
     public void test6(){
      emps.stream()
       .distinct()
       .forEach(System.out::println);
     }
  • 相关阅读:
    什么是JDBC的最佳实践?
    如何将jquery对象转换为js对象?
    JQuery有几种选择器?
    jQuery 库中的 $() 是什么
    JS 中 == 和 === 区别是什么?
    有两张表;请用SQL查询,所有的客户订单日期最新的前五条订单记录?
    根据你以往的经验简单叙述一下MYSQL的优化?
    数据库MySQL分页时用的语句?
    LeetCode231-2的幂(水题,考察是否粗心)
    LeetCode191-位1的个数(题目有问题)
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13300655.html
Copyright © 2011-2022 走看看