Sử dụng lambdas và các giao diện chức năng trong Java 8 giúp tạo ra sự trừu tượng hóa vòng lặp mới. Tôi có thể lặp qua một bộ sưu tập với chỉ mục và kích thước bộ sưu tập:
List<String> strings = Arrays.asList("one", "two","three","four");
forEach(strings, (x, i, n) -> System.out.println("" + (i+1) + "/"+n+": " + x));
Đầu ra nào:
1/4: one
2/4: two
3/4: three
4/4: four
Mà tôi đã thực hiện như:
@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());
}
}
Các khả năng là vô tận. Ví dụ: tôi tạo một bản tóm tắt sử dụng hàm đặc biệt chỉ cho phần tử đầu tiên:
forEachHeadTail(strings,
(head) -> System.out.print(head),
(tail) -> System.out.print(","+tail));
Mà in một danh sách được phân tách bằng dấu phẩy chính xác:
one,two,three,four
Mà tôi đã thực hiện như:
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);
}
}
}
Các thư viện sẽ bắt đầu bật lên để làm những việc này, hoặc bạn có thể tự cuộn.
Type var = null; for (var : set) dosomething; if (var != null) then ...