最佳答案
我正在使用 Java8来了解作为一等公民的函数是如何运行的:
package test;
import java.util.*;
import java.util.function.*;
public class Test {
public static void myForEach(List<Integer> list, Function<Integer, Void> myFunction) {
list.forEach(functionToBlock(myFunction));
}
public static void displayInt(Integer i) {
System.out.println(i);
}
public static void main(String[] args) {
List<Integer> theList = new ArrayList<>();
theList.add(1);
theList.add(2);
theList.add(3);
theList.add(4);
theList.add(5);
theList.add(6);
myForEach(theList, Test::displayInt);
}
}
我要做的是使用方法引用将方法 displayInt
传递给方法 myForEach
。编译器将产生以下错误:
src/test/Test.java:9: error: cannot find symbol
list.forEach(functionToBlock(myFunction));
^
symbol: method functionToBlock(Function<Integer,Void>)
location: class Test
src/test/Test.java:25: error: method myForEach in class Test cannot be applied to given ty
pes;
myForEach(theList, Test::displayInt);
^
required: List<Integer>,Function<Integer,Void>
found: List<Integer>,Test::displayInt
reason: argument mismatch; bad return type in method reference
void cannot be converted to Void
编译器抱怨 void cannot be converted to Void
。我不知道如何在 myForEach
的签名中指定函数接口的类型,以便编译代码。我知道我可以简单地将 displayInt
的返回类型改为 Void
,然后返回 null
。但是,在某些情况下,可能无法更改要在其他地方传递的方法。是否有一种简单的方法来重用 displayInt
?