当前位置:   article > 正文

Java Stram 流对于返回对象的处理 (结束流)

Java Stram 流对于返回对象的处理 (结束流)

Java Stram 流对于返回对象的处理 (结束流)

package com.zhong.streamdemo.showdownstreamdemo;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.Stream;

/**
 * @ClassName : ShowDownStream
 * @Description : 结束 stream 的几种方法
 * @Author : zhx
 * @Date: 2024-02-08 16:21
 */
public class ShowDownStream {
    public static void main(String[] args) {
        ArrayList<Student> students = new ArrayList<>(List.of(
                new Student("小钟", 22, 179.1),
                new Student("小钟", 22, 179.1),
                new Student("小王", 21, 153.9),
                new Student("小王", 21, 153.9),
                new Student("张三", 52, 160.8),
                new Student("李四", 42, 140.5),
                new Student("王五", 18, 135.3)
        ));

        // 1、计算出升高超过 153 的有多少
        System.out.println("-------------计算出升高超过 153 的有多少-------------");
        long count = students.stream()
                .filter(x -> x.getHeight() > 153)
                .count();
        System.out.println(count);

        // 2、找出身高最高的学生对象并输出
        System.out.println("-------------找出身高最高的学生对象并输出-------------");
        Student student = students.stream()
                .max(Comparator.comparingDouble(Student::getHeight))
                .get();
        System.out.println(student);

        // 3、计算出升高超过 153 的对象并放到一个新的集合返回
        System.out.println("-------------计算出升高超过 153 的对象并放到一个新的集合返回-------------");
        List<Student> collect = students.stream()
                .filter(x -> x.getHeight() > 153)
                .toList();
        collect.forEach(System.out::println);

        // 4、计算出升高超过 153 的对象 把姓名和身高放到一个新的 Map 集合返回
        System.out.println("-------------计算出升高超过 153 的对象 把姓名和身高放到一个新的 Map 集合返回-------------");
        Map<String, Double> collect1 = students.stream()
                .filter(x -> x.getHeight() > 153)
                .distinct()     // 注意这里有重复的数据需要到学生类里面重写  hashCode() 和 equals() 然后调用 distinct() 进行去重操作 不然会报错
                .collect(Collectors.toMap(Student::getName, Student::getHeight));
        collect1.forEach((k, v) -> System.out.println(k + " ==> " + v));


        // 5、找出身高最高的学生对象 收集到学生数组
        System.out.println("-------------5、找出身高最高的学生对象 收集到学生数组-------------");
        Student[] array = students.stream()
                .filter(x -> x.getHeight() > 153)
                .toArray(Student[]::new);
        for (Student student1 : array) {
            System.out.println(student1);
        }
    }
}

@Data
@AllArgsConstructor
@NoArgsConstructor
class Student {
    private String name;
    private int age;
    private double height;

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Student student = (Student) o;
        return age == student.age && Double.compare(height, student.height) == 0 && Objects.equals(name, student.name);
    }

    @Override
    public int hashCode() {
        return Objects.hash(name, age, height);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/71101
推荐阅读
相关标签
  

闽ICP备14008679号