मैं यह जानने के लिए जावा 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