方法引用
方法引用其实就是把已存在的类的方法直接拿过使用,当需要使用的方法自己没有,但是其他的对象或者类有,直接借别人的在虚拟机中就是将指示引用的方法拿过来入栈使用!
一、方法引用符
双冒号::
为引用运算符,而它所在的表达式被称为方法应用。如果Lambda要表达的函数方案已经存在于某个方法的实现中,那么则可以通过双冒号来引用该方法作为Lambda的替代者。
1.语义分析
例中,System.out
对象中有一个重载的println(String)
方法恰好就是我们所需要的。那么对于printString
方法的函数式接口参数,对比下面两种写法,完全等效:
- Lambda表达式写法:
s -> System.out.println(s);
- 方法引用写法:
System.out::println
第一种语义是指:拿到参数之后经Lambda之手,继而传递给 System.out.println 方法去处理
第二种等效写法的语义是指:直接让 System.out 中的 println 方法来取代Lambda。两种写法的执行效果完全一样,而第二种方法引用的写法复用了已有方案,更加简洁。
注:Lambda 中 传递的参数 一定是方法引用中 的那个方法可以接收的类型,否则会抛出异常
2.省略与推导
如果使用Lambda,那么根据“可推导就是可省略”的原则,无需指定参数类型,也无需指定的重载形式——它们都将被自动推导。而如果使用方法引用,也是同样可以根据上下文进行推导。
函数式接口是Lambda的基础,而方法引用是Lambda的孪生兄弟
下面这段代码将会调用 println 方法的不同重载形式,将函数式接口改为int类型的参数:由于上下文变了之后可以自动推导出唯一对应的匹配重载,所以方法引用没有任何变化:
@FunctionalInterface
interface PrintableInteger{
void print(int str);
}
public class Test {
public static void printInetger(PrintableInteger data){
data.print(1024);
}
public static void main(String[] args) {
printInetger(System.out::println);
}
}
这次方法引用将会自动匹配到 println(int) 的重载形式。
二、通过对象引用成员方法
这是最常见的一种用法,与上例相同。如果一个类中已经存在了一个成员方法:
class MethodRefOject {
public void printUpperCase(String str){
System.out.println(str.toUpperCase());
}
}
函数式接口仍然定义为:
@FunctionalInterface
interface Printable{
void print(String str);
}
那么当需要使用这个 printUpperCase 成员方法来替代 Printable 接口的Lambda的时候,已经具有了MethodRefObject 类的对象实例,则可以通过对象名引用成员方法,代码为:
public class Test {
public static void printString(Printable lambda){
lambda.print("hello");
}
public static void main(String[] args) {
printString(new MethodRefOject()::printUpperCase);
}
}
三、通过类名称引用静态方法
由于在 java.lang.Math 类中已经存在了静态方法 abs ,所以当我们需要通过Lambda来调用该方法时,有两种写法。首先是函数式接口:
@FunctionalInterface
interface Calcable{
int calc(int num);
}
public class Test {
public static void method(int num,Calcable lambda){
System.out.println(lambda.calc(num));
}
public static void main(String[] args) {
method(-10, Math::abs);
method(-10, n -> Math.abs(n)); // Lambda写法!
}
}
四、通过super引用成员方法
如果存在继承关系,当Lambda中需要出现super调用时,也可以使用方法引用进行替代。首先是函数式接口:
@FunctionalInterface
interface Greetable{
void greet();
}
class Human {
public void sayHello() {
System.out.println("Hello, I an father!");
}
}
class Man extends Human{
@Override
public void sayHello() {
System.out.println("Hello, I an son");
}
public void method(Greetable g){
g.greet();
}
public void show() {
// 新建父类对象调用
method(() -> new Human().sayHello());
// Lambda当前访问
method(() -> super.sayHello());
// 方法引用,直接把别人的方法拿过来给自己用
method(super::sayHello);
}
}
public class Test {
public static void main(String[] args) {
new Man().show();
}
}
五、通过this引用成员方法
this代表当前对象,如果需要引用的方法就是当前类中的成员方法,那么可以使用“this::成员方法
”的格式来使用方法引用。
对于当前问题,下面就演示这种多此一举的方法
@FunctionalInterface
interface Richable{
void buy();
}
class Husband {
private void buyHouse() {
System.out.println("买套房子");
}
private void marry(Richable lambda) {
lambda.buy();
}
public void beHappy() {
this.buyHouse();
marry(() -> this.buyHouse());
marry(this::buyHouse);
}
}
六、类的构造器的引用
由于构造器的名称与类名完全一样,并不固定。所以构造器引用使用 类名称::new
的格式表示
@FunctionalInterface
interface PBuilder{
P buildP(String name);
}
class P{
String name;
public P(String name) { this.name=name; }
}
public class Test {
public static void function(String name, PBuilder pBuilder){
System.out.println(pBuilder.buildP(name).name);
}
public static void main(String[] args) {
function("弦子",name -> new P(name));
function("刘亦菲",P::new);
}
}
七、数组的构造器应用
@FunctionalInterface
interface ArrayBuilder{
int[] buildArray(int length);
}
public class Test {
public static int[] initArray(int length, ArrayBuilder builder){
return builder.buildArray(length);
}
public static void main(String[] args) {
initArray(5, length -> new int[length]);
initArray(5,int[]::new);
}
}