方法参考的组成
这与这个问题有关:如何做功能组合?
我注意到方法引用可以分配给声明为 的变量,因此我假设它应该具有或功能,因此我希望我们可以直接组合它们。但显然,我们需要先将它们分配给声明为first(或在调用之前进行类型转换)的变量,然后才能调用或调用它们。Function
andThen
compose
Function
andThen
compose
我怀疑我可能对这应该如何工作有一些误解。
所以我的问题:
- 为什么我们需要先进行类型转换或将其分配给变量,然后才能调用该方法?
andThen
- 以这种方式需要完成的方法引用的确切类型是什么?
下面的示例代码。
public class MyMethods{
public static Integer triple(Integer a){return 3*a;}
public static Integer quadruple(Integer a){return 4*a;}
public int operate(int num, Function<Integer, Integer> f){
return f.apply(num);
}
public static void main(String[] args){
MyMethods methods = new MyMethods();
int three = methods.operate(1, MyMethods::triple); // This is fine
// Error below
// int twelve = methods.operate(1, (MyMethods::triple).andThen(MyMethods::quadruple));
// But this one is fine
Function<Integer, Integer> triple = MyMethods::triple;
Function<Integer, Integer> quadruple = MyMethods::quadruple;
int twelve = methods.operate(1, triple.andThen(quadruple));
// This one is also fine
int twelve2 = methods.operate(1, ((Function<Integer, Integer>)MyMethods::triple).andThen(MyMethods::quadruple));
}
}
有关错误的更多说明
在 Eclipse 中,它突出显示了错误消息:
此表达式的目标类型必须是功能接口
在Java 8编译器中,错误是:
java8test.java:14: error: method reference not expected here int twelve = methods.operate(1, (MyMethods::triple).andThen(MyMethods::quadruple)); ^ 1 error
(实际上,为什么 Eclipse 中的错误与 Java 8 编译器中的错误不同?