जावा 8 में लैम्ब्डा और कार्यात्मक इंटरफेस का उपयोग करना नए लूप एब्स्ट्रैक्ट को संभव बनाता है। मैं सूचकांक और संग्रह आकार के साथ एक संग्रह पर लूप कर सकता हूं:
List<String> strings = Arrays.asList("one", "two","three","four");
forEach(strings, (x, i, n) -> System.out.println("" + (i+1) + "/"+n+": " + x));
कौन से आउटपुट:
1/4: one
2/4: two
3/4: three
4/4: four
जिसे मैंने इस प्रकार लागू किया है:
@FunctionalInterface
public interface LoopWithIndexAndSizeConsumer<T> {
void accept(T t, int i, int n);
}
public static <T> void forEach(Collection<T> collection,
LoopWithIndexAndSizeConsumer<T> consumer) {
int index = 0;
for (T object : collection){
consumer.accept(object, index++, collection.size());
}
}
संभावनाएं अनंत हैं। उदाहरण के लिए, मैं एक अमूर्तता का निर्माण करता हूं जो पहले तत्व के लिए एक विशेष फ़ंक्शन का उपयोग करता है:
forEachHeadTail(strings,
(head) -> System.out.print(head),
(tail) -> System.out.print(","+tail));
कौन सा अल्पविराम से अलग की गई सूची को सही ढंग से प्रिंट करता है:
one,two,three,four
जिसे मैंने इस प्रकार लागू किया है:
public static <T> void forEachHeadTail(Collection<T> collection,
Consumer<T> headFunc,
Consumer<T> tailFunc) {
int index = 0;
for (T object : collection){
if (index++ == 0){
headFunc.accept(object);
}
else{
tailFunc.accept(object);
}
}
}
इस प्रकार की चीजों को करने के लिए पुस्तकालय पॉप अप करने लगेंगे, या आप अपना रोल कर सकते हैं।
Type var = null; for (var : set) dosomething; if (var != null) then ...