我正在使用 Java 8 来了解如何作为一等公民。我有以下片段:
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
在代码编译的签名中指定函数接口的类型。我知道我可以简单地更改 to 的返回类型,displayInt
然后Void
返回null
。但是,可能存在无法更改我想在其他地方传递的方法的情况。有没有一种简单的方法可以displayInt
按原样重复使用?