• 当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用!
  • 方法引用可以看做是Lambda表达式深层次的表达。换句话说,方法引用就是Lambda表达式,也就是函数式接口的一个实例,通过方法的名字来指向一个方法,可以认为是Lambda表达式的一个语法糖。
  • 要求:实现接口的抽象方法的参数列表和返回值类型,必须与方法引用的方法的参数列表和返回值类型保持一致!
  • 格式:使用操作符“::” 将类(或对象) 与方法名分隔开来。
  • 如下三种主要使用情况:
    • 对象::实例方法名
    • 类::静态方法名
    • 类::实例方法名

1、方法引用的使用情况1

  1. public class Employee {
  2. private int id;
  3. private String name;
  4. private int age;
  5. private double salary;
  6. public int getId() {
  7. return id;
  8. }
  9. public void setId(int id) {
  10. this.id = id;
  11. }
  12. public String getName() {
  13. return name;
  14. }
  15. public void setName(String name) {
  16. this.name = name;
  17. }
  18. public int getAge() {
  19. return age;
  20. }
  21. public void setAge(int age) {
  22. this.age = age;
  23. }
  24. public double getSalary() {
  25. return salary;
  26. }
  27. public void setSalary(double salary) {
  28. this.salary = salary;
  29. }
  30. public Employee() {
  31. System.out.println("Employee().....");
  32. }
  33. public Employee(int id) {
  34. this.id = id;
  35. System.out.println("Employee(int id).....");
  36. }
  37. public Employee(int id, String name) {
  38. this.id = id;
  39. this.name = name;
  40. }
  41. public Employee(int id, String name, int age, double salary) {
  42. this.id = id;
  43. this.name = name;
  44. this.age = age;
  45. this.salary = salary;
  46. }
  47. @Override
  48. public String toString() {
  49. return "Employee{" + "id=" + id + ", name='" + name + '\'' + ", age=" + age + ", salary=" + salary + '}';
  50. }
  51. @Override
  52. public boolean equals(Object o) {
  53. if (this == o)
  54. return true;
  55. if (o == null || getClass() != o.getClass())
  56. return false;
  57. Employee employee = (Employee) o;
  58. if (id != employee.id)
  59. return false;
  60. if (age != employee.age)
  61. return false;
  62. if (Double.compare(employee.salary, salary) != 0)
  63. return false;
  64. return name != null ? name.equals(employee.name) : employee.name == null;
  65. }
  66. @Override
  67. public int hashCode() {
  68. int result;
  69. long temp;
  70. result = id;
  71. result = 31 * result + (name != null ? name.hashCode() : 0);
  72. result = 31 * result + age;
  73. temp = Double.doubleToLongBits(salary);
  74. result = 31 * result + (int) (temp ^ (temp >>> 32));
  75. return result;
  76. }
  77. }
  1. import org.junit.Test;
  2. import java.io.PrintStream;
  3. import java.util.Comparator;
  4. import java.util.function.BiPredicate;
  5. import java.util.function.Consumer;
  6. import java.util.function.Function;
  7. import java.util.function.Supplier;
  8. /**
  9. * 方法引用的使用
  10. *
  11. * 1.使用情境:当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用!
  12. *
  13. * 2.方法引用,本质上就是Lambda表达式,而Lambda表达式作为函数式接口的实例。所以
  14. * 方法引用,也是函数式接口的实例。
  15. *
  16. * 3. 使用格式: 类(或对象) :: 方法名
  17. *
  18. * 4. 具体分为如下的三种情况:
  19. * 情况1 对象 :: 非静态方法
  20. * 情况2 类 :: 静态方法
  21. *
  22. * 情况3 类 :: 非静态方法
  23. *
  24. * 5. 方法引用使用的要求:要求接口中的抽象方法的形参列表和返回值类型与方法引用的方法的
  25. * 形参列表和返回值类型相同!(针对于情况1和情况2)
  26. */
  27. public class MethodRefTest {
  28. // 情况一:对象 :: 实例方法
  29. //Consumer中的void accept(T t)
  30. //PrintStream中的void println(T t)
  31. @Test
  32. public void test() {
  33. Consumer<String> c1 = str -> System.out.println(str);
  34. c1.accept("兖州");
  35. System.out.println("+++++++++++++");
  36. PrintStream ps = System.out;
  37. Consumer<String> c2 = ps::println;
  38. c2.accept("xian");
  39. }
  40. //Supplier中的T get()
  41. //Employee中的String getName()
  42. @Test
  43. public void test2() {
  44. Employee emp = new Employee(004,"Nice",19,4200);
  45. Supplier<String> sk1 = () -> emp.getName();
  46. System.out.println(sk1.get());
  47. System.out.println("*******************");
  48. Supplier<String> sk2 = emp::getName;
  49. System.out.println(sk2.get());
  50. }
  51. }

2、方法引用的使用情况2

  1. import org.junit.Test;
  2. import java.util.Comparator;
  3. import java.util.function.Function;
  4. public class MethodRefTest {
  5. // 情况二:类 :: 静态方法
  6. //Comparator中的int compare(T t1,T t2)
  7. //Integer中的int compare(T t1,T t2)
  8. @Test
  9. public void test3() {
  10. Comparator<Integer> com1 = (t1, t2) -> Integer.compare(t1,t2);
  11. System.out.println(com1.compare(21,20));
  12. System.out.println("+++++++++++++++");
  13. Comparator<Integer> com2 = Integer::compare;
  14. System.out.println(com2.compare(15,7));
  15. }
  16. //Function中的R apply(T t)
  17. //Math中的Long round(Double d)
  18. @Test
  19. public void test4() {
  20. Function<Double,Long> func = new Function<Double, Long>() {
  21. @Override
  22. public Long apply(Double d) {
  23. return Math.round(d);
  24. }
  25. };
  26. System.out.println("++++++++++++++++++");
  27. Function<Double,Long> func1 = d -> Math.round(d);
  28. System.out.println(func1.apply(14.1));
  29. System.out.println("++++++++++++++++++");
  30. Function<Double,Long> func2 = Math::round;
  31. System.out.println(func2.apply(17.4));
  32. }
  33. }

3、方法引用的使用情况3

  1. import org.junit.Test;
  2. import java.util.Comparator;
  3. import java.util.function.BiPredicate;
  4. import java.util.function.Function;
  5. public class MethodRefTest {
  6. // 情况三:类 :: 实例方法 (有难度)
  7. // Comparator中的int comapre(T t1,T t2)
  8. // String中的int t1.compareTo(t2)
  9. @Test
  10. public void test5() {
  11. Comparator<String> com1 = (s1,s2) -> s1.compareTo(s2);
  12. System.out.println(com1.compare("abc","abd"));
  13. System.out.println("++++++++++++++++");
  14. Comparator<String> com2 = String :: compareTo;
  15. System.out.println(com2.compare("abd","abm"));
  16. }
  17. //BiPredicate中的boolean test(T t1, T t2);
  18. //String中的boolean t1.equals(t2)
  19. @Test
  20. public void test6() {
  21. BiPredicate<String,String> pre1 = (s1, s2) -> s1.equals(s2);
  22. System.out.println(pre1.test("MON","MON"));
  23. System.out.println("++++++++++++++++++++");
  24. BiPredicate<String,String> pre2 = String :: equals;
  25. System.out.println(pre2.test("MON","MON"));
  26. }
  27. // Function中的R apply(T t)
  28. // Employee中的String getName();
  29. @Test
  30. public void test7() {
  31. Employee employee = new Employee(007, "Ton", 21, 8000);
  32. Function<Employee,String> func1 = e -> e.getName();
  33. System.out.println(func1.apply(employee));
  34. System.out.println("++++++++++++++++++++++++");
  35. Function<Employee,String> f2 = Employee::getName;
  36. System.out.println(f2.apply(employee));
  37. }
  38. }

4、构造器引用与数组引用的使用

格式:ClassName::new
与函数式接口相结合,自动与函数式接口中方法兼容。
可以把构造器引用赋值给定义的方法,要求构造器参数列表要与接口中抽象方法的参数列表一致!且方法的返回值即为构造器对应类的对象。

  1. import org.junit.Test;
  2. import java.util.Arrays;
  3. import java.util.function.BiFunction;
  4. import java.util.function.Function;
  5. import java.util.function.Supplier;
  6. /**
  7. * 一、构造器引用
  8. * 和方法引用类似,函数式接口的抽象方法的形参列表和构造器的形参列表一致。
  9. * 抽象方法的返回值类型即为构造器所属的类的类型
  10. *
  11. * 二、数组引用
  12. * 可以把数组看做是一个特殊的类,则写法与构造器引用一致。
  13. */
  14. public class MethodRefTest {
  15. //构造器引用
  16. //Supplier中的T get()
  17. //Employee的空参构造器:Employee()
  18. @Test
  19. public void test() {
  20. Supplier<Employee> sup = new Supplier<Employee>() {
  21. @Override
  22. public Employee get() {
  23. return new Employee();
  24. }
  25. };
  26. System.out.println("+++++++++++++++++++");
  27. Supplier<Employee> sk1 = () -> new Employee();
  28. System.out.println(sk1.get());
  29. System.out.println("+++++++++++++++++++");
  30. Supplier<Employee> sk2 = Employee::new;
  31. System.out.println(sk2.get());
  32. }
  33. //Function中的R apply(T t)
  34. @Test
  35. public void test2() {
  36. Function<Integer, Employee> f1 = id -> new Employee(id);
  37. Employee employee = f1.apply(7793);
  38. System.out.println(employee);
  39. System.out.println("+++++++++++++++++++");
  40. Function<Integer, Employee> f2 = Employee::new;
  41. Employee employee1 = f2.apply(4545);
  42. System.out.println(employee1);
  43. }
  44. //BiFunction中的R apply(T t,U u)
  45. @Test
  46. public void test3() {
  47. BiFunction<Integer, String, Employee> f1 = (id, name) -> new Employee(id, name);
  48. System.out.println(f1.apply(2513, "Fruk"));
  49. System.out.println("*******************");
  50. BiFunction<Integer, String, Employee> f2 = Employee::new;
  51. System.out.println(f2.apply(9526, "Bon"));
  52. }
  53. //数组引用
  54. //Function中的R apply(T t)
  55. @Test
  56. public void test4() {
  57. Function<Integer, String[]> f1 = length -> new String[length];
  58. String[] arr1 = f1.apply(7);
  59. System.out.println(Arrays.toString(arr1));
  60. System.out.println("+++++++++++++++++++");
  61. Function<Integer, String[]> f2 = String[]::new;
  62. String[] arr2 = f2.apply(9);
  63. System.out.println(Arrays.toString(arr2));
  64. }
  65. }