美文网首页
第 47 条:Stream 要优先用 Collection 作为

第 47 条:Stream 要优先用 Collection 作为

作者: 综合楼 | 来源:发表于2021-05-23 19: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);
}

相关文章

网友评论

      本文标题:第 47 条:Stream 要优先用 Collection 作为

      本文链接:https://www.haomeiwen.com/subject/emgndltx.html