方法引用-通过this引用成员方法和类的构造器引用


通过this引用成员方法

this代表当前对象 如果需要引用的方法就是当前类中的成员方法 那么可以使用this::成员方法 的格式来使用方法引用

 函数式接口:

@FunctionalInterface
public interface Richable {
    void buy();
}

测试类:

public class Husband {
    //定义一个买房子的方法
    public void buyHounse(){
        System.out.println("北京二环内买一套四合院!");
    }
    //定义一个结婚的方法 参数传递Richable接口
    public void marry(Richable r){
        r.buy();
    }
    //定义一个非常高兴的方法
    public void soHappay(){
        //调用结婚的方法 方法的参数Richable是一个函数式接口 传递Lambda表达式
        marry(()->{
            //使用this.成员方法 调用本类买房子的方法
            this.buyHounse();
        });
        /*
            使用方法引用优化Lambda表达式
            this是已经存在的
            本类的成员方法buyHouse也是已经存在的
            所以我们可以直接使用this引用本类的成员方法buyHouse
         */
        marry(this::soHappay);
    }

    public static void main(String[] args) {
        new Husband().soHappay();
    }
}

类的构造器引用

由于构造器的名称与类名完全一样 并不固定 所以构造器引用使用类名称::new的格式表示

函数接口:

/*
定义一个创建Person对象的函数式接口
 */
@FunctionalInterface
public interface PersonBuilder {
    //定义一个方法 根据传递的姓名 创建person对象返回
    Person builderPerson(String name);
}

测试类:

/*
类的构造器(构造方法)引用
 */
public class Demo {
    //定义一个方法 参数传递姓名和PersonBuilder接口 方法中通过姓名创建Person对象
    public static void printName(String name,PersonBuilder pb){
        Person person = pb.builderPerson(name);
        System.out.println(person.getName());
    }

    public static void main(String[] args) {
        //调用printName方法 方法的参数PersonBuilder接口是一个函数式接口 可以传递Lambda
        printName("张三",(String name)->{
            return new Person(name);
        });
        /*
        使用方法引用优化Lambda表达式
        构造方法new Person(String nane)已知
        创建对象已知 new
        就可以使用Person引用new创建对象
         */
        printName("李四",Person::new);//使用Person类的带参构造方法 通过传递的姓名创建对象
    }
}

运行结果:

方法引用-通过this引用成员方法和类的构造器引用

原创文章,作者:dweifng,如若转载,请注明出处:https://blog.ytso.com/276413.html

(0)
上一篇 2022年7月23日
下一篇 2022年7月23日

相关推荐

发表回复

登录后才能评论