- 当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用!
- 方法引用可以看做是Lambda表达式深层次的表达。换句话说,方法引用就是Lambda表达式,也就是函数式接口的一个实例,通过方法的名字来指向一个方法,可以认为是Lambda表达式的一个语法糖。
- 要求:实现接口的抽象方法的参数列表和返回值类型,必须与方法引用的方法的参数列表和返回值类型保持一致!
- 格式:使用操作符“::” 将类(或对象) 与方法名分隔开来。
- 如下三种主要使用情况:
- 对象::实例方法名
- 类::静态方法名
- 类::实例方法名
1、方法引用的使用情况1
public class Employee {private int id;private String name;private int age;private double salary;public int getId() {return id;}public void setId(int id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public double getSalary() {return salary;}public void setSalary(double salary) {this.salary = salary;}public Employee() {System.out.println("Employee().....");}public Employee(int id) {this.id = id;System.out.println("Employee(int id).....");}public Employee(int id, String name) {this.id = id;this.name = name;}public Employee(int id, String name, int age, double salary) {this.id = id;this.name = name;this.age = age;this.salary = salary;}@Overridepublic String toString() {return "Employee{" + "id=" + id + ", name='" + name + '\'' + ", age=" + age + ", salary=" + salary + '}';}@Overridepublic boolean equals(Object o) {if (this == o)return true;if (o == null || getClass() != o.getClass())return false;Employee employee = (Employee) o;if (id != employee.id)return false;if (age != employee.age)return false;if (Double.compare(employee.salary, salary) != 0)return false;return name != null ? name.equals(employee.name) : employee.name == null;}@Overridepublic int hashCode() {int result;long temp;result = id;result = 31 * result + (name != null ? name.hashCode() : 0);result = 31 * result + age;temp = Double.doubleToLongBits(salary);result = 31 * result + (int) (temp ^ (temp >>> 32));return result;}}
import org.junit.Test;import java.io.PrintStream;import java.util.Comparator;import java.util.function.BiPredicate;import java.util.function.Consumer;import java.util.function.Function;import java.util.function.Supplier;/*** 方法引用的使用** 1.使用情境:当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用!** 2.方法引用,本质上就是Lambda表达式,而Lambda表达式作为函数式接口的实例。所以* 方法引用,也是函数式接口的实例。** 3. 使用格式: 类(或对象) :: 方法名** 4. 具体分为如下的三种情况:* 情况1 对象 :: 非静态方法* 情况2 类 :: 静态方法** 情况3 类 :: 非静态方法** 5. 方法引用使用的要求:要求接口中的抽象方法的形参列表和返回值类型与方法引用的方法的* 形参列表和返回值类型相同!(针对于情况1和情况2)*/public class MethodRefTest {// 情况一:对象 :: 实例方法//Consumer中的void accept(T t)//PrintStream中的void println(T t)@Testpublic void test() {Consumer<String> c1 = str -> System.out.println(str);c1.accept("兖州");System.out.println("+++++++++++++");PrintStream ps = System.out;Consumer<String> c2 = ps::println;c2.accept("xian");}//Supplier中的T get()//Employee中的String getName()@Testpublic void test2() {Employee emp = new Employee(004,"Nice",19,4200);Supplier<String> sk1 = () -> emp.getName();System.out.println(sk1.get());System.out.println("*******************");Supplier<String> sk2 = emp::getName;System.out.println(sk2.get());}}
2、方法引用的使用情况2
import org.junit.Test;import java.util.Comparator;import java.util.function.Function;public class MethodRefTest {// 情况二:类 :: 静态方法//Comparator中的int compare(T t1,T t2)//Integer中的int compare(T t1,T t2)@Testpublic void test3() {Comparator<Integer> com1 = (t1, t2) -> Integer.compare(t1,t2);System.out.println(com1.compare(21,20));System.out.println("+++++++++++++++");Comparator<Integer> com2 = Integer::compare;System.out.println(com2.compare(15,7));}//Function中的R apply(T t)//Math中的Long round(Double d)@Testpublic void test4() {Function<Double,Long> func = new Function<Double, Long>() {@Overridepublic Long apply(Double d) {return Math.round(d);}};System.out.println("++++++++++++++++++");Function<Double,Long> func1 = d -> Math.round(d);System.out.println(func1.apply(14.1));System.out.println("++++++++++++++++++");Function<Double,Long> func2 = Math::round;System.out.println(func2.apply(17.4));}}
3、方法引用的使用情况3
import org.junit.Test;import java.util.Comparator;import java.util.function.BiPredicate;import java.util.function.Function;public class MethodRefTest {// 情况三:类 :: 实例方法 (有难度)// Comparator中的int comapre(T t1,T t2)// String中的int t1.compareTo(t2)@Testpublic void test5() {Comparator<String> com1 = (s1,s2) -> s1.compareTo(s2);System.out.println(com1.compare("abc","abd"));System.out.println("++++++++++++++++");Comparator<String> com2 = String :: compareTo;System.out.println(com2.compare("abd","abm"));}//BiPredicate中的boolean test(T t1, T t2);//String中的boolean t1.equals(t2)@Testpublic void test6() {BiPredicate<String,String> pre1 = (s1, s2) -> s1.equals(s2);System.out.println(pre1.test("MON","MON"));System.out.println("++++++++++++++++++++");BiPredicate<String,String> pre2 = String :: equals;System.out.println(pre2.test("MON","MON"));}// Function中的R apply(T t)// Employee中的String getName();@Testpublic void test7() {Employee employee = new Employee(007, "Ton", 21, 8000);Function<Employee,String> func1 = e -> e.getName();System.out.println(func1.apply(employee));System.out.println("++++++++++++++++++++++++");Function<Employee,String> f2 = Employee::getName;System.out.println(f2.apply(employee));}}
4、构造器引用与数组引用的使用
格式:ClassName::new
与函数式接口相结合,自动与函数式接口中方法兼容。
可以把构造器引用赋值给定义的方法,要求构造器参数列表要与接口中抽象方法的参数列表一致!且方法的返回值即为构造器对应类的对象。
import org.junit.Test;import java.util.Arrays;import java.util.function.BiFunction;import java.util.function.Function;import java.util.function.Supplier;/*** 一、构造器引用* 和方法引用类似,函数式接口的抽象方法的形参列表和构造器的形参列表一致。* 抽象方法的返回值类型即为构造器所属的类的类型** 二、数组引用* 可以把数组看做是一个特殊的类,则写法与构造器引用一致。*/public class MethodRefTest {//构造器引用//Supplier中的T get()//Employee的空参构造器:Employee()@Testpublic void test() {Supplier<Employee> sup = new Supplier<Employee>() {@Overridepublic Employee get() {return new Employee();}};System.out.println("+++++++++++++++++++");Supplier<Employee> sk1 = () -> new Employee();System.out.println(sk1.get());System.out.println("+++++++++++++++++++");Supplier<Employee> sk2 = Employee::new;System.out.println(sk2.get());}//Function中的R apply(T t)@Testpublic void test2() {Function<Integer, Employee> f1 = id -> new Employee(id);Employee employee = f1.apply(7793);System.out.println(employee);System.out.println("+++++++++++++++++++");Function<Integer, Employee> f2 = Employee::new;Employee employee1 = f2.apply(4545);System.out.println(employee1);}//BiFunction中的R apply(T t,U u)@Testpublic void test3() {BiFunction<Integer, String, Employee> f1 = (id, name) -> new Employee(id, name);System.out.println(f1.apply(2513, "Fruk"));System.out.println("*******************");BiFunction<Integer, String, Employee> f2 = Employee::new;System.out.println(f2.apply(9526, "Bon"));}//数组引用//Function中的R apply(T t)@Testpublic void test4() {Function<Integer, String[]> f1 = length -> new String[length];String[] arr1 = f1.apply(7);System.out.println(Arrays.toString(arr1));System.out.println("+++++++++++++++++++");Function<Integer, String[]> f2 = String[]::new;String[] arr2 = f2.apply(9);System.out.println(Arrays.toString(arr2));}}
