Java8新特性之Lambda表达式(一)

新建一个springboot项目:可按https://blog.csdn.net/ZW_888666/article/details/99824347操作

 创建后续学习中需要用到的Employee实体类:

package lambda;

import java.util.Objects;

public class Employee {

    private String name;
    private int age;
    private double salary;
    private Status status;   //枚举型

    //生成无参构造器
    public Employee() {
    }

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

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

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

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

    //生成全参构造器
    public Employee(String name, int age, double salary, Status status) {
        this.name = name;
        this.age = age;
        this.salary = salary;
        this.status = status;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof Employee)) return false;
        Employee employee = (Employee) o;
        return getAge() == employee.getAge() &&
                Double.compare(employee.getSalary(), getSalary()) == 0 &&
                getName().equals(employee.getName());
    }

    @Override
    public int hashCode() {
        return Objects.hash(getName(), getAge(), getSalary());
    }

    public String getName() {
        return name;
    }

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

    public int getAge() {
        return age;
    }

    public void setAge(int 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 String toString() {
        return "Employee{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", salary=" + salary +
                ", status=" + status +
                '}';
    }

    public enum Status{
        FREE,
        BUSY,
        VOCATION
    }
}
FilterEmployeeByAge类:
package lambda;

public class FilterEmployeeByAge implements Mypredicate<Employee> {
    @Override
    public boolean test(Employee employee) {
        return employee.getAge() >= 35;
    }
}
FilterEmployeeBySalary类:
package lambda;

public class FilterEmployeeBySalary implements Mypredicate<Employee> {

    @Override
    public boolean test(Employee employee) {
        return employee.getSalary() >= 5000;
    }
}
MyFun接口:
package lambda;

@FunctionalInterface
public interface MyFun<T> {
    public Integer getValue(Integer my);
}
MyFunction接口:
package lambda;


@FunctionalInterface
public interface MyFunction {

   public String getValue(String str) ;

}
MyFunction2接口:
package lambda;

/**
 * @author qiuxin
 * @date 2020/02/22
 **/
public interface MyFunction2<T, R> {

    public R getValue(T t1, T t2);

}
Mypredicate接口:
package lambda;

public interface Mypredicate<T> {
    public boolean test(T t);
}

准备工作做好了,可以开始写有关lambda的测试,,,

  • 为什么要使用lambda:
    package lambda;
    
    import org.junit.Test;
    
    import java.util.*;
    
    public class TestLambda1 {
    
        //原来的匿名内部类
        @Test
        public void test1() {
            Comparator<Integer> com = new Comparator<Integer>() {
                @Override
                public int compare(Integer o1, Integer o2) {
                    return Integer.compare(o1, o2);
                }
            };
            TreeSet<Integer> ts = new TreeSet<>(com);
        }
    
        //Lambda表达式
        @Test
        public void test2() {
            Comparator<Integer> com = (x, y) -> Integer.compare(x, y);
            TreeSet<Integer> ts = new TreeSet<>(com);
        }
    
    
        @Test
        public void test3() {
            List<Employee> list = filter(employees);
            for (Employee employee : list) {
                System.out.println(employee);
            }
        }
    
        List<Employee> employees = Arrays.asList(
                new Employee("张三", 25, 9000),
                new Employee("李四", 38, 10000),
                new Employee("王晓", 45, 12000),
                new Employee("李华", 28, 9500),
                new Employee("花花", 22, 8000)
        );
    
        //需求:获取当前公司中员工年龄大于35的数,有可能附加多个条件进行筛选
        public List<Employee> filter(List<Employee> list) {
            List<Employee> emps = new ArrayList<>();
            for (Employee emp : list) {
                if (emp.getAge() >= 35) {
                    emps.add(emp);
                }
            }
            return emps;
        }
    
        @Test
        public void test4() {
            List<Employee> employee = filterEmployee(employees, new FilterEmployeeByAge());
            for (Employee employee1 : employee) {
                System.out.println(employee1);
            }
    
            List<Employee> employees0 = filterEmployee(employees, new FilterEmployeeBySalary());
            for (Employee employee1 : employees0) {
                System.out.println(employee1);
            }
        }
    
        //优化方式一:策略设计模式
        public List<Employee> filterEmployee(List<Employee> list, Mypredicate<Employee> mp) {
            List<Employee> emps = new ArrayList<>();
            for (Employee employee : list) {
                if (mp.test(employee)) {
                    emps.add(employee);
                }
            }
            return emps;
        }
    
        //优化方式二:匿名内部类
        @Test
        public void test5() {
            List<Employee> result = new ArrayList<>();
            List<Employee> employees0 = filterEmployee(employees, new Mypredicate<Employee>() {
                @Override
                public boolean test(Employee employee) {
                    return employee.getSalary() >= 5000;
                }
            });
            for (Employee employee : employees0) {
                System.out.println(employee);
                result.add(employee);
            }
        }
    
        //优化方式三:Lambda表达式
        @Test
        public void test6() {
            List<Employee> result = new ArrayList<>();
            List<Employee> employees0 = filterEmployee(employees, (e) -> e.getSalary() >= 5000);
            for (Employee employee : employees0) {
                System.out.println(employee);
                result.add(employee);
            }
        }
    
        //优化方式四:Stream API
        @Test
        public void test7(){
            employees.stream()
                    .filter((e)->e.getSalary()>=5000)
                    .limit(2)
                    .forEach(System.out::println);
            System.out.println("------------------------");
            employees.stream()
                    .map(Employee::getName)
                    .forEach(System.out::println);
        }
    
    }
    
    

    代码更简洁可观

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值