Java8实战练习题


前言:尚硅谷b站视频练习记录
尚硅谷b站视频-java8 Stream练习

1、练习

package com.chenheng;

import com.chenheng.model.Employee;
import com.chenheng.model.Trader;
import com.chenheng.model.Transaction;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;
import org.springframework.boot.test.context.SpringBootTest;
import java.util.*;
import java.util.stream.Collectors;

/**
 * @author chenheng
 * @date 2021/11/13 19:35
 */
@SpringBootTest
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
public class LambdaPractice {
    List<Employee> employees = Arrays.asList(
            new Employee("张三", 18, 9999.99),
            new Employee("李四", 38, 5555.55),
            new Employee("王五", 50, 6666.66),
            new Employee("赵六", 16, 3333.33),
            new Employee("田七", 8, 7777.77)
    );
    /**
     * 给定一个数字列表,如何返回一个由每个数的平方构成的列表呢?
     * 例如,给定【1,2,3,4,5】,应该返回【1,4,9,16,25】
     */
    @Test
    void test01(){
        Integer[] arrays = {1,2,3,4,5};
        List<Integer> list = Arrays.asList(arrays);
        list.stream().map(x -> x*x).forEach(System.out::println);
    }
    /**
     * 怎样用map和reduce方法数一数流中有多少个Employee呢?
     */
    @Test
    void test02(){
        Optional<Integer> sumOptional = employees.stream()
                .map(e -> 1).reduce(Integer::sum);
        System.out.println(sumOptional.get());
        System.out.println("***************");
        System.out.println(employees.size());
    }
    @Test
    void test0201(){
        Optional<Integer> ageSumOptional = employees.stream()
                .map(e -> e.getAge())
                .reduce(Integer::sum);
        System.out.println(ageSumOptional.get());
    }
    List<Transaction> transactions = null;
    @BeforeAll
    public void before(){
        Trader raoul = new Trader("Raoul", "Cambridge");
        Trader mario = new Trader("Mario", "Milan");
        Trader alan = new Trader("Alan", "Cambridge");
        Trader brian = new Trader("Brian", "Cambridge");
        transactions = Arrays.asList(
                new Transaction(brian, 2011, 300),
                new Transaction(raoul, 2012, 1000),
                new Transaction(raoul, 2011, 400),
                new Transaction(mario, 2011, 710),
                new Transaction(mario, 2012, 700),
                new Transaction(alan, 2012, 950)
        );
    }
    //1、找出2011年发生的所有交易,并按交易额排序(从低到高)
    @Test
    void test0301(){
        List<Transaction> list = transactions.stream()
                .filter(t -> Objects.equals(t.getYear(), 2011))
                .sorted(Comparator.comparing(Transaction::getValue))
                .collect(Collectors.toList());
        list.forEach(System.out::println);
    }
    //2、交易员都在哪些不同的城市工作过?
    @Test
    void test0302(){
        List<Trader> list = transactions.stream()
                .map(Transaction::getTrader)
                .collect(Collectors.toList());
        List<String> cityList = list.stream()
                .map(Trader::getCity)
                .distinct()
                .collect(Collectors.toList());
        cityList.forEach(System.out::println);
    }
    //3、查找所有来自剑桥的交易员,并按姓名排序
    @Test
    void test0303(){
        List<Trader> traders = transactions.stream()
                .map(Transaction::getTrader)
                .distinct()
                .filter(trader -> Objects.equals(trader.getCity(), "Cambridge"))
                .sorted(Comparator.comparing(Trader::getName))
                .collect(Collectors.toList());
        traders.forEach(System.out::println);
    }
    //4、返回所有交易员的姓名字符串,按字母顺序排序
    @Test
    void test0304(){
        List<String> nameList = transactions.stream()
                .map(Transaction::getTrader)
                .distinct()
                .map(Trader::getName)
                .sorted()
                .collect(Collectors.toList());
        nameList.forEach(System.out::println);
    }
    //5、有没有交易员是在米兰工作的?
    @Test
    void test0305(){
        List<Trader> milanList = transactions.stream()
                .map(Transaction::getTrader)
                .distinct()
                .filter(trader -> Objects.equals(trader.getCity(), "Milan"))
                .collect(Collectors.toList());
        milanList.forEach(System.out::println);
    }
    //6、打印生活在剑桥的交易员的所有交易额
    @Test
    void test0306(){
        List<Integer> list = transactions.stream()
                .filter(transaction -> Objects.equals(transaction.getTrader().getCity(), "Cambridge"))
                .map(Transaction::getValue)
                .collect(Collectors.toList());
        list.forEach(System.out::println);
    }
    //7、所有交易中,最高的交易额是多少
    @Test
    void test0307(){
        Integer maxValue = transactions.stream()
                .map(Transaction::getValue)
                .max(Integer::compareTo)
                .get();
        System.out.println("maxValue->" + maxValue);
        System.out.println("********************");
        Integer max = transactions.stream()
                .map(Transaction::getValue)
                .reduce(Integer::max)
                .get();
        System.out.println("max->" + max);
        System.out.println("*******************");
        IntSummaryStatistics iss = transactions.stream()
                .collect(Collectors.summarizingInt(Transaction::getValue));
        int issMax = iss.getMax();
        System.out.println("issMax->" + issMax);
        System.out.println("*****************");
    }
    //8、找到交易额最小的交易(指这个对象)
    @Test
    void test0308(){
        Transaction minTransaction = transactions.stream()
                .min(Comparator.comparing(Transaction::getValue))
                .get();
        System.out.println(minTransaction);
    }
}

2、练习中出现的类

2.1、Employee

package com.chenheng.model;

import java.util.Objects;

/**
 * @author chenheng
 * @date 2021/10/4 11:08
 */
public class Employee {
    private int id;
    private String name;
    private Integer age;
    private Double salary;
    private Status status;

    public Employee() {
    }

    public Employee(int id) {
        this.id = id;
    }

    public Employee(int id, String name) {
        this.id = id;
        this.name = name;
    }

    public Employee(String name, Integer age, Double salary) {
        this.name = name;
        this.age = age;
        this.salary = salary;
    }

    public Employee(int id, String name, Integer age, Double salary) {
        this.id = id;
        this.name = name;
        this.age = age;
        this.salary = salary;
    }

    public Employee(int id, String name, Integer age, Double salary, Status status) {
        this.id = id;
        this.name = name;
        this.age = age;
        this.salary = salary;
        this.status = status;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }

    public Double getSalary() {
        return salary;
    }

    public void setSalary(Double salary) {
        this.salary = salary;
    }

    public Status getStatus() {
        return status;
    }

    public void setStatus(Status status) {
        this.status = status;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Employee employee = (Employee) o;
        return id == employee.id &&
                Objects.equals(name, employee.name) &&
                Objects.equals(age, employee.age) &&
                Objects.equals(salary, employee.salary) &&
                status == employee.status;
    }

    @Override
    public int hashCode() {
        return Objects.hash(id, name, age, salary, status);
    }

    @Override
    public String toString() {
        return "Employee{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", age=" + age +
                ", salary=" + salary +
                ", status=" + status +
                '}';
    }

    public enum Status{
        FREE,
        BUSY,
        VACATION
    }
}

2.2、Trader

package com.chenheng.model;

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

import java.util.Objects;

/**
 * @author chenheng
 * @date 2021/11/13 19:51
 * 交易员类
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Trader {
    private String name;
    private String city;

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Trader trader = (Trader) o;
        return Objects.equals(name, trader.name) &&
                Objects.equals(city, trader.city);
    }

    @Override
    public int hashCode() {
        return Objects.hash(name, city);
    }
}

2.3、Transaction

package com.chenheng.model;

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

/**
 * @author chenheng
 * @date 2021/11/13 19:50
 * 交易类
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Transaction {
    private Trader trader;
    private int year;
    private int value;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值