深入理解Java中的构造函数引用和方法引用
jdk 8 见证了一个特殊特性的出现:构造函数引用和方法引用。在本文中, adrian d. finlay 探讨了开发人员如何释放构造函数引用的真正潜力。
方法引用的一些背景
如果你还不知道 java 构造函数本身就是特殊的方法,那么阅读方法引用的基本示例将对读者有所帮助,通过了解这些内容,可以了解构造函数引用是什么。
「方法引用为已经有名称的方法提供易读的 lambda 表达式。」
「它们提供了一种无需执行就可以引用方法的简单方式。」
以上引自《java 8 编程参考官方教程(第 9 版)》,作者:herbert schildt
方法引用可以引用静态方法和实例方法,两者是通用的。方法引用是函数式接口的实例。虽然 lambda 表达式允许你动态创建方法实现,但通常情况下,一个方法最终会调用 lambda 表达式中的另一个方法来完成我们想要完成的工作。更直接的方法是使用方法引用。当你已经有一个方法来实现这个函数式接口时,这是非常有用的。
让我们看一个使用静态方法及实例方法的示例。
//step #1 - create a funnctional interface. interface funcint { //contains one and only abstract method string answer(string x, boolean y); } //step #2 - class providing method(s)that match funcint.answer()'s definition. class answer { static string ans_math_static(string x, boolean y) { return "\"" + x + "\"" + "\t = \t" + y.tostring().touppercase(); } string ans_math_inst(string x, boolean y) { return "\"" + x + "\"" + "\t = \t" + y.tostring().touppercase(); } }
译注:以上代码的测试用例如下,因静态方法与实例方法结果相同,仅以静态方法为例。
answer.ans_math_static("9 > 11 ?", false); answer.ans_math_static("987.6 < 1.1 ?", false); answer.ans_math_static("1 > 0.9 ?", true); answer.ans_math_static("t/f: is chengdu in sichuan?", true); answer.ans_math_static("-1 % 0.2=0 ?", false); answer.ans_math_static("t/f: does dwyne wade play for the knicks?", false);
得到与原文举例相同的输出结果:
"9 > 11 ?" = false "987.6 < 1.1 ?" = false "1 > 0.9 ?" = true "t/f: is chengdu in sichuan?" = true "-1 % 0.2=0 ?" = false "t/f: does dwyne wade play for the knicks?" = false
使用方法引用的主要步骤有:
1.定义一个函数式接口
2.定义一个满足函数式接口抽象方法要求的方法
3.使用对步骤2中定义的 (x :: y ) 方法引用实例化函数式接口的实例。
译注:静态方法的方法引用格式为 类名 :: 方法名 ;实例方法的方法引用格式为 对象实例名 :: 方法名 。
4.使用函数式接口实例调用方法: instance.abstractmethod();
这提供了一种创建方法实现的可插拔方式。lambda 表达式和方法引用为 java 编程带来了一个功能方面的提升。
构造函数的方法引用
让我们开始详细讨论吧。
构造函数和其他方法一样是方法。对吗?错。它们有点特殊,它们是对象初始化方法。尽管如此,它们仍然是一个方法,没有什么能阻止我们像其他方法引用一样创建构造函数的方法引用。
//step #1 - create a funnctional interface. interface funcint { //contains one and only abstract method automobile auto(string make, string model, short year); } //step #2 - class providing method(s)that match funcint.answer()'s definition. class automobile { //trunk member variables private string make; private string model; private short year; //automobile constructor public automobile(string make, string model, short year) { this.make = make; this.model = model; this.year = year; } protected void what() { system.out.println("this automobile is a" + year + " " + make + " " + model + "."); } } //step #3 - class making use of method reference public class constrref { static void createinstance() { } public static void main(string[] args) { system.out.println(); //remember, a method reference is an instance of a functional interface. therefore.... funcint auto = automobile::new;//we really don't gain much from this example //example #1 automobile honda = auto.auto("honda", "accord", (short) 2006); honda.what(); //example #1 automobile bmw = auto.auto("bmw", "530i", (short) 2006); bmw.what(); system.out.println(); } }
输出结果
this automobile is a2006 honda accord. this automobile is a2006 bmw 530i.
说明
用户应该清楚的第一件事是这个基本示例没有那么实用。这是一种相当迂回的创建对象实例的方式。实际上,几乎可以肯定,你不会经历所有这些麻烦来创建一个 automobile 实例,但是为了概念的完整性,还是要提及。
使用构造函数的方法引用的主要步骤有:
1.定义一个只有抽象方法的函数式接口,该方法的返回类型与你打算使用该对象进行构造函数引用的对象相同。
2.创建一个类,该类的构造函数与函数式接口的抽象方法匹配。
3.使用对步骤 #2 中定义的构造函数的方法引用,实例化函数式接口的实例。
译注:构造函数的方法引用格式为 类名 :: new
4.在步骤 #2 中使用构造函数引用实例化类的实例,例如 myclass x = constructorreference.abstractmethod (x, y, z…)
构造函数引用与泛型一起使用的时候变得更有用。通过使用泛型工厂方法,可以创建各种类型的对象。
让我们看一看。
//step #1 - create a funnctional interface. interface funcint<ob, x, y, z> { //contains one and only abstract method ob func(x make, y model, z year); } //step #2 - create a generic class providing a constructor compatible with funint.func()'s definition class automobile<x, y, z> { //automobile member variables private x make; private y model; private z year; //automobile constructor public automobile(x make, y model, z year) { this.make = make; this.model = model; this.year = year; } protected void what() { system.out.println("this automobile is a " + year + " " + make + " " + model + "."); } } //step #3 - create a non-generic class providing a constructor compatible with funint.func()'s definition class plane { //automobile member variables private string make; private string model; private int year; //plane constructor public plane(string make, string model, int year) { this.make = make; this.model = model; this.year = year;//automatic unboxing } protected void what() { system.out.println("this plane is a " + year + " " + make + " " + model + "."); } } //step #3 - class making use of method reference with generics public class constrrefgen { //here is where the magic happens static <ob, x, y, z> ob factory(funcint<ob, x, y, z> obj, x p1, y p2, z p3) { return obj.func(p1, p2, p3); } public static void main(string[] args) { system.out.println(); //example #1 funcint<automobile<string, string, integer>, string, string, integer> auto_cons = automobile<string, string, integer>::new; automobile<string, string, integer> honda = factory(auto_cons, "honda", "accord", 2006); honda.what(); //example #2 funcint<plane, string, string, integer> plane_cons = plane::new; plane cessna = factory(plane_cons, "cessna", "skyhawk", 172); cessna.what(); system.out.println(); } }
输出结果
this automobile is a 2006 honda accord. this plane is a 172 cessna skyhawk.
说明
这里有很多东西需要消化。事实上,如果你以前从未深入研究过泛型,那么这些代码看上去可能相当晦涩。让我们分解一下。
我们做的第一件事是创建一个通用的函数式接口。注意细节。我们有四个泛型类型参数:ob、x、y、z。
- ob 代表要引用其构造函数的类。
- x,y,z 代表该类的构造函数的参数。
如果我们替换泛型方法占位符,抽象方法可能是这样的: someclass func (string make, string model, int year)。注意,由于我们使接口具有了泛型,所以可以指定任何返回类型或我们希望返回的类实例。这释放了构造函数引用的真正潜力。
接下来的两个部分相对简单,我们创建了相同的类,一个泛型类和一个非泛型类,以演示它们与在公共类中定义的工厂方法的互操作性。注意,这些类的构造函数与 funcint.func() 的方法签名是兼容的。
进入公共类的文件。这个方法就是奇迹发生的地方。
//here is where the magic happens static <ob, x, y, z> ob factory(funcint<ob, x, y, z> obj, x p1, y p2, z p3) { return obj.func(p1, p2, p3); }
我们将该方法标记为静态的,所以我们可以不使用 constrefgen 实例,毕竟它是一个工厂方法。注意,factory 方法具有与函数式接口相同的泛型类型参数。注意,方法的返回类型是 ob,它可以是由我们决定的任何类。当然,x、y、z是 ob 中方法的方法参数。请注意,该函数以 funcint 的一个实例作为参数(类类型和方法参数作为类型参数),同时也接受 ob 类型的类作为方法的参数。
在方法体中,它调用方法引用并将在 factory() 中传递的参数提供给它。
我们的第一个任务是创建一个符合 funcint<> 的方法引用。
这里我们分别引用 automobile 类和 plane 类的构造函数。
我们的下一个任务是创建一个带有方法引用的对象。
为此,我们调用 factory() 并将它需要的构造函数引用以及 factory() 定义的有关构造函数的参数提供给它。factory() 可以灵活地创建对各种方法的构造函数引用,因为它是通用的。因为 plane 类和 automobile 类的构造函数匹配 funcint.func() 的方法签名,所以它们可作为 funcint.func() 的方法引用使用。factory() 通过调用 obj.func(x,y,z) 返回类的一个实例,这是一个构造函数方法引用,当求值时,它将为你提供指定为其参数的类的一个实例。
斟酌这个问题一段时间,会发现它是java的一个非常有用的补充 ;)
英文链接:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: linux动态链接库使用方法分享
推荐阅读
-
Java中构造方法、空指针异常现象、基本数据类型和引用数据类型作为参数传递的区别
-
深入理解Java中的构造函数引用和方法引用
-
深入理解 PHP7 中全新的 zval 容器和引用计数机制
-
深入理解java中的static关键字(语法和使用方法特点等)
-
全面理解Java中的引用传递和值传递
-
【Java 20】Java8的其他新特性 - Lambda表达式、函数式接口、方法引用、构造器引用、数组引用、Stream API、Optional类
-
java中java8新特性方法引用和构造器引用
-
Java中对象和引用的理解
-
Java中软引用、弱引用和虚引用的使用方法示例
-
深入理解php中构造函数和析构函数的作用