Java 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 ...