方法引用

1.什么是方法引用

方法引用是java8中特定情况下简化lambada表达式的一种语法糖,这里的特定情况是指当调用现有的方法时可以用方法引用替代lambada表达式,其他情况下,则不可以替代。

举个栗子:

public class MethodReferenceTest {

   public static void main(String[] args) {
       List<String> city = Arrays.asList("beijing","shanghai","tianjin","wuhan");
       //使用lambada表达式遍历
       city.forEach(i -> System.out.println(i));
       //使用方法引用
       city.forEach(System.out::println);
   }
}

以上使用lambada表达式和方法引用的效果是等价的,但是方法引用看着要更加简洁一些,其实方法引用可以看做是函数指针(虽然java没有指针的概念),一个指向现有的函数的指针。

方法引用左右使用“::”双冒号隔开,左边是具体的类,右面是调用的具体的方法。上面的out实际上是System类中的一个PrintStream类型的常量(声明为final),PrintStream是java中的一个类,上面“::”右边的println方法就在这个类中定义,这个类中除了println方法,还有print,printf等输出方法。

2.四种方法引用

Student类:

public class Student {
   private String name;
   private double score;

   public String getName() {
       return name;
   }

   public void setName(String name) {
       this.name = name;
   }

   public double getScore() {
       return score;
   }

   public void setScore(double score) {
       this.score = score;
   }

   public Student(String name, double score) {
       this.name = name;
       this.score = score;
   }

   public Student() {
   }
    //静态方法(类方法)
   public static int compareStudentByScore(Student student1, Student student2){
       return (int) student1.getScore() - (int)student2.getScore();
   }
    //实例方法(对象方法)
   public int compareStudentByName(Student student){
       return this.getName().compareToIgnoreCase(student.getName());
   }
}

StudentCompare类:

public class StudentCompare {
   //实例方法(对象方法)
   public int CompareStudentByScore(Student student1,Student student2){
       return (int)student1.getScore() - (int)student2.getScore();
   }
}

2.1静态方法引用(类名::静态方法名):

举个栗子:

public class MethodReferenceTest1 {

   public static void main(String[] args) {
       Student student1 = new Student("周明",75);
       Student student2 = new Student("赵凯",83);
       Student student3 = new Student("李强",97);
       Student student4 = new Student("孙国",62);

       List<Student> students = Arrays.asList(student1,student2,student3,student4);

       students.sort(Student::compareStudentByScore); //静态方法引用
       students.forEach(student -> System.out.println(student.getScore()));
   }
}
执行结果

上面(Student::compareStudentByScore静态方法引用,注意和静态方法调用Student.compareStudentByScore()是没有任何关系的,静态方法引用是一种表达式,lambada表达式的语法糖,参数默认传入,自己不能传入参数。静态方法调用是一种方法的调用形式,不能作为表达式使用,若有参数需要自己传入参数。

2.2实例方法引用(对象名::实例方法名):

举个栗子:

public class MethodReferenceTest1 {

   public static void main(String[] args) {
       Student student1 = new Student("周明",75);
       Student student2 = new Student("赵凯",83);
       Student student3 = new Student("李强",97);
       Student student4 = new Student("孙国",62);

       List<Student> students = Arrays.asList(student1,student2,student3,student4);

      StudentCompare studentCompare = new StudentCompare();//创建实例

      students.sort(studentCompare::CompareStudentByScore); //实例方法引用
      students.forEach(student -> System.out.println(student.getScore()));
   }
}
执行结果

和上面静态方法引用运行结果一样。实例方法引用就是在进行方法引用之前需要创建实例,通过实例对象名去引用方法。

2.3类的实例方法引用(类名::实例方法名)

在方法调用中,是不能用类名直接调用实例方法的,但在方法引用中是可以有 类名::实例方法名 这种形式的。

举个栗子:

public class MethodReferenceTest1 {

   public static void main(String[] args) {
       Student student1 = new Student("周明",75);
       Student student2 = new Student("赵凯",83);
       Student student3 = new Student("李强",97);
       Student student4 = new Student("孙国",62);

       List<Student> students = Arrays.asList(student1,student2,student3,student4);

       students.sort(Student::compareStudentByName);
       students.forEach(student -> System.out.println(student.getName()));
   }
}
执行结果

通过以上示例,我们讨论一下是谁调用的compareStudentByName方法

表面上看,是类Student类调用了compareStudentByName方法,但是Student是类,而compareStudentByName不是静态方法,只是实例方法,所以Student类是不能调用compareStudentByName的,那么又是谁调用了compareStudentByName方法呢,解决这个疑问,我们需要跟进一下List接口的sort方法,这是一个默认方法,sort方法的参数是一个Comparator的函数式接口,该接口的抽象方法compare方法有两个参数,源码如下:

default void sort(Comparator<? super E> c) {
   Object[] a = this.toArray();
   Arrays.sort(a, (Comparator) c);
   ListIterator<E> i = this.listIterator();
   for (Object e : a) {
       i.next();
       i.set((E) e);
   }
}
@FunctionalInterface
public interface Comparator<T> {
   int compare(T o1, T o2);
}

而我们的Student类的compareStudentByName方法在对name进行比较时,实际上调用的是String类的compareToIgnoreCase,而该方法调用的还是Comparator接口的compare方法,源码如下:

public int compareToIgnoreCase(String str) {
   return CASE_INSENSITIVE_ORDER.compare(this, str);
}

所以我们可以知道,当我们执行 students.sort(Student::compareStudentByName); 这句代码的时候,sort方法参数中lambada表达式的参数有两个,而我们的compareStudentByName方法只有一个参数,这要求的参数个数和我们传入的参数个数根本对应不上呀,
那么lambada的另一个参数是谁呢?我在刚看这块源码的时候其实也有疑惑。那么下面我们使用lambada表达式举个栗子,而不使用方法引用:

public class MethodReferenceTest2 {

    public static void main(String[] args) {
        List<String> city = Arrays.asList("beijing","shanghai","tianjin","wuhan");
        city.sort((city1,city2) -> city1.compareToIgnoreCase(city2));
        //city.sort(String::compareToIgnoreCase);这句使用方法引用代码的效果和上面是一样的
        city.forEach(System.out::println);
    }
}

通过上面的栗子,我们可以看到,sort方法的参数中lambada表达式的两个参数有一个作为调用compareToIgnoreCase方法的对象,另一个参数作为compareToIgnoreCase方法的参数,进行比较。

回到上面 students.sort(Student::compareStudentByName)的sort方法参数中的lambada表达式的另一个参数是谁的问题,现在已经不难理解了,另一个参数就是compareStudentByName方法的调用者,this(Student的当前实例),在Student类中:

public int compareStudentByName(Student student){
    return this.getName().compareToIgnoreCase(student.getName());
}

所以对于 students.sort(Student::compareStudentByName) 这句代码中不是Student类调用的compareStudentByName的论断就很好理解了,类是当然不能调用实例方法了,实例方法需要类的对象实例来调用,而compareStudentByName方法就是Student的当前对象实例this调用的。

针对以上类的实例方法引用的问题,一般lambada表达式的第一个参数作为实例方法的调用者,其余参数作为实例方法的参数传入。

2.4构造方法引用(类名::new)

构造方法引用就是通过new调用构造方法,创建一个对象。

public class MethodReferenceTest3 {

   public static void main(String[] args) {
       System.out.println(getString(String::new)); //等价于System.out.println(getString(() -> new String()));
       System.out.println(getString1("hello",String::new));
   }

   private static String getString(Supplier<String> stringSupplier){
       return stringSupplier.get()+"hello";
   }

   private static String getString1(String str,Function<String,String> function){
       return function.apply(str);
   }
}

以上的示例通过构造方法引用创建String类的对象实例。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容