方法引用、构造函数引用

核能气质少年 提交于 2020-04-06 09:50:46
import java.util.Arrays;
import java.util.List;

import static java.util.Comparator.comparing;

/**
 * 方法引用
 */
public class Quote{
    public static void main(String[] args){
        List<Apple> list = Arrays.asList(new Apple("red",120),new Apple("green",100));
        list.sort(comparing(Apple::getWeight));
        System.out.println(list);

        List<String> str = Arrays.asList("a","b","A","B");
//        str.sort((s1,s2)->s1.compareToIgnoreCase(s2));
        str.sort(String::compareToIgnoreCase);
        System.out.println(str);

    }
}


构造函数引用

public class Apple {
    private String color;
    private int weight;

    public Apple() {
    }

    public Apple(int weight) {
        this.weight = weight;
    }

    public Apple(String color) {
        this.color = color;
    }

    public Apple(String color, int weight) {
        this.color = color;
        this.weight = weight;
    }

    public int getWeight() {
        return weight;
    }

    public void setWeight(int weight) {
        this.weight = weight;
    }

    public String getColor() {
        return color;
    }

    public void setColor(String color) {
        this.color = color;
    }

    @Override
    public String toString() {
        return "Apple{" +
                "color='" + color + '\'' +
                ", weight=" + weight +
                '}';
    }
}

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.function.Supplier;

/**
 * @FunctionalInterface
 * public interface Supplier<T> {
 *      T get();
 * }
 */
public class Demo {
    public static List<Apple> map(List<Integer> list,Function<Integer,Apple> f){
        List<Apple> res = new ArrayList<>();
        for (Integer e : list) {
            res.add(f.apply(e));
        }
        return res;
    }

    public static void main(String[] args){
        /**
         * 等价于
         *  Supplier<Apple> c2 = () -> new Apple();
         *  Apple apple = c2.get();
         */
        Supplier<Apple> c1 = Apple::new;
        Apple apple = c1.get();


        /**
         * 等价于
         * Function<String,Apple> c2 = Apple::new;
         *  Apple a2 = c2.apply("red");
         */
        Function<String,Apple> c2 = Apple::new;
        Apple a2 = c2.apply("red");

        //传递给了Apple的构造函数
        List<Integer> weights = Arrays.asList(1,3,4,2,5);
        List<Apple> apples = map(weights,Apple::new);
        System.out.println(apples);

        /**
         * 等价于
         * BiFunction<String,Integer,Apple> c3 = (color,weight) -> new Apple(color,weight);
         * Apple a3 = c3.apply("green",110);
         */
        //具有两个参数的构造函数Apple(String color, Integer weight)
        BiFunction<String,Integer,Apple> c3 = Apple::new;
        Apple a3 = c3.apply("red",110);
        System.out.println(a3);



    }
}
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;

/**
 * 方法引用练习
 * 用不同的排序策略给一个Apple列表排序
 */
public class Demo2 {
    //传递代码
    public static class AppleComparator implements Comparator<Apple>{
        @Override
        public int compare(Apple a1, Apple a2) {
            return a1.getWeight() - a2.getWeight();
        }
    }

    public static void main(String[] args){
        List<Apple> appleList = Arrays.asList(new Apple(12),new Apple(15),new Apple(10));
//        appleList.sort(new AppleComparator());
//        System.out.println(appleList);

       //使用匿名类
//       appleList.sort(new Comparator<Apple>() {
//           @Override
//           public int compare(Apple a1, Apple a2) {
//               return a1.getWeight() - a2.getWeight();
//           }
//       });

       //使用Lambda表达式

//        appleList.sort((a1,a2)->a1.getWeight()-a2.getWeight());
        //Comparator的comparing的静态辅助方法
//        appleList.sort(Comparator.comparing(a -> a.getWeight()));

        //使用方法引用
        appleList.sort(Comparator.comparing(Apple::getWeight));
        System.out.println(appleList);
    }
}

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!