甲Ç onstructor 参考 就像一个方法 参考 不同之处在于方法的名称为“新的”。可以通过以下语法使用“类名”和关键字“ new ”来创建它。
<Class-Name> :: new
在下面的示例中,我们使用java.util.function.Function。它是一个功能接口,其单个抽象方法是apply()。 功能 接口 表示采用单个参数的操作Ť并返回结果[R 。
import java.util.function.*; @FunctionalInterfaceinterface MyFunctionalInterface { Employee getEmployee(String name); } class Employee { private String name; public Employee(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } } public class ConstructorReferenceTest { public static void main(String[] args) { MyFunctionalInterface mf = Employee :: new; // constructor reference Function<String, Employee> f1 = Employee :: new; // using Function interface Function<String, Employee> f2 = (name) -> new Employee(name); // Lambda Expression System.out.println(mf.getEmployee("Raja").getName()); System.out.println(f1.apply("Adithya").getName()); System.out.println(f2.apply("Jaidev").getName()); } }
输出结果
Raja Adithya Jaidev