ฉันกำลังเล่นกับ 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
ในรุ่นล่าสุดของ JDK 8 API