私は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
コードがコンパイルされるようなシグネチャで関数インターフェイスのタイプを指定する方法がわかりません。私は単にの戻り値の型を変更することができます知っているdisplayInt
にVoid
してから返しますnull
。ただし、他の場所に渡したいメソッドを変更できない場合があります。displayInt
そのまま再利用する簡単な方法はありますか?
Block
変更されConsumer
ました