方法引用

从最初开始,只要是进行引用都是针对于引用类型完成的,也就是只有数组、类、接口具备引用操作。但是JDK1.8 开始追加了方法引用的概念。实际上引用的本质就是别名所以方法的引用也是别名的使用。而方法引用的类型有四种形式:

引用静态方法:类名称::static 方法名称

@FunctionalInterface
interface IUtil<R,N> {
    R switchPara(N n);
}
public class MyEnum {
    public static void main(String[] args) {
        IUtil<String,Integer> util = String::valueOf;
        String str = util.switchPara(10);
        System.out.println(str);
    }
}

引用某个对象的方法:实例化对象 :: 普通方法

@FunctionalInterface
interface IUtil1<R>{
    R switchPara();
}
public class MyEnum {
    public static void main(String[] args) {
        IUtil1<String> util = "hello"::toUpperCase;
        System.out.println(util.switchPara());
    }
}

引用某个特定类的方法: 类名称 :: 普通方法

@FunctionalInterface
interface IUtil2<R,N>{
    N switchPara(R r1,R r2);
}
public class MyEnum {
    public static void main(String[] args) {
        IUtil2<String,Integer> util = String::compareTo;
        System.out.println(util.switchPara("世界","中国"));
    }
}

引用构造方法: 类名称 :: new

class Person {
    private String name;
    private Integer age;
    public Person(String name,Integer age){
        this.name = name;
        this.age = age;
    }

    @Override
    public String toString() {
        return "Person [name=" + name + ", age=" + age + "]";
    }
}
@FunctionalInterface
interface IUtil3<P,PA,PB>{
    P switchPara(PA x,PB y);
}
public class MyEnum {
    public static void main(String[] args) {
        IUtil3<Person,String,Integer> util = Person::new;
        System.out.println(util.switchPara("改革开放",40));
    }
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值