第 47 条:Stream 要优先用 Collection 作为
2021-05-23 本文已影响0人
综合楼
Stream 要优先用 Collection 作为返回类型.jpeg
// Adapter from Stream<E> to Iterable<E>
public static <E> Iterable<E> iterableOf(Stream<E> stream) {
return stream::iterator;
}
// Adapter from Iterable<E> to Stream<E>
public static <E> Stream<E> streamOf(Iterable<E> iterable) {
return StreamSupport.stream(iterable.spliterator(), false);
}