การใช้lambdasและส่วนต่อประสานการทำงานในJava 8ทำให้การสร้างลูป abstractions เป็นไปได้ ฉันสามารถวนรอบคอลเลกชันด้วยดัชนีและขนาดคอลเลกชัน:
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 ...