jdk8学习笔记一

package com.atguigu.exer;

@FunctionalInterface
public interface MyFunction {

    public String getValue(String str);

}
package com.atguigu.exer;

public interface MyFunction2<T, R> {

    public R getValue(T t1, T t2);
    unction2<Long, Lon 
       g> mf){
        System.out.println(mf.getValu

}

e(l1, l2));
    }```      

package com.atguigu.exer;

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

import org.junit.Test;

import com.atguigu.java8.Employee;

public class TestLambda {

List<Employee> emps = Arrays.asList(
        new Employee(101, "张三", 18, 9999.99),
        new Employee(102, "李四", 59, 6666.66),
        new Employee(103, "王五", 28, 3333.33),
        new Employee(104, "赵六", 8, 7777.77),
        new Employee(105, "田七", 38, 5555.55)
);

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

    for (Employee emp : emps) {
        System.out.println(emp);
    }
}

@Test
public void test2(){
    String trimStr = strHandler("\t\t\t 我大尚硅谷威武   ", (str) -> str.trim());
    System.out.println(trimStr);

    String upper = strHandler("abcdef", (str) -> str.toUpperCase());
    System.out.println(upper);

    String newStr = strHandler("我大尚硅谷威武", (str) -> str.substring(2, 5));
    System.out.println(newStr);
}

//需求:用于处理字符串
public String strHandler(String str, MyFunction mf){
    return mf.getValue(str);
}

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

    op(100L, 200L, (x, y) -> x * y);
}

//需求:对于两个 Long 型数据进行处理
public void op(Long l1, Long l2, MyFunction2<Long, Long> mf){
    System.out.println(mf.getValue(l1, l2));
}

}
“`

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值