Lambda表达式语法2

package airycode_java8.nice3;

import airycode_java8.nice1.Employee;
import org.junit.Test;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

/**
 * Created by admin on 2019/1/2.
 */
public class TestLambda {

    //准备数据
    List<Employee> employeeList = Arrays.asList(
            new Employee("张三",18,9999.99, Employee.Status.FREE),
            new Employee("李四",38,5555.55,Employee.Status.BUSY),
            new Employee("王五",50,6666.66,Employee.Status.VOCATION),
            new Employee("赵六",16,3333.33,Employee.Status.FREE),
            new Employee("田七",8,7777.77,Employee.Status.BUSY)
    );

    //
    @Test
    public void test1(){
        Collections.sort(employeeList,(e1,e2)->{
            if (e1.getAge() == e2.getAge()) {
                return e1.getName().compareTo(e2.getName());
            } else {
                return Integer.compare(e1.getAge(),e2.getAge());
            }
        });

        for (Employee employee: employeeList) {
            System.out.println(employee);
        }

    }

    @Test
    public void test2(){
        String result = strHandle("aa", (str) -> str.toUpperCase());
        System.out.println(result);
    }

    public String strHandle(String string,MyFunction mf){
        return mf.getValue(string);
    }

    @Test
    public void test3(){
        op(100L,200L,(x,y) -> x+y);
    }

    public void op(Long l1,Long l2,MyFunction2<Long,Long> mf){
        System.out.println(mf.getValue(l1,l2));
    }

}



package airycode_java8.nice3;

/**
 * Created by admin on 2019/1/2.
 */
@FunctionalInterface
public interface MyFunction {

    public String getValue(String s);

}


package airycode_java8.nice3;

/**
 * Created by admin on 2019/1/2.
 */
@FunctionalInterface
public interface MyFunction2<T,R> {

    public R getValue(T t1,T t2);

}

  

转载于:https://www.cnblogs.com/airycode/p/10231614.html

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值