用Java将Iterable转换为Collection
假设以下是我们的Iterable-
Iterable<Integer> i = Arrays.asList(50, 100, 150, 200, 250, 300, 500, 800, 1000);
现在,创建一个集合-
Collection<Integer> c = convertIterable(i);
上面,我们有一个自定义convertIterable()的转换方法。以下是方法-
public static <T> Collection<T> convertIterable(Iterable<T> iterable) {
if (iterable instanceof List) {
return (List<T>) iterable;
}
return StreamSupport.stream(iterable.spliterator(), false).collect(Collectors.toList());
}示例
以下是在Java中将Iterable转换为Collection的程序-
import java.util.*;
import java.util.stream.*;
public class Demo {
public static <T> Collection<T> convertIterable(Iterable<T> iterable) {
if (iterable instanceof List) {
return (List<T>) iterable;
}
return StreamSupport.stream(iterable.spliterator(), false).collect(Collectors.toList());
}
public static void main(String[] args) {
Iterable<Integer> i = Arrays.asList(50, 100, 150, 200, 250, 300, 500, 800, 1000);
Collection<Integer> c = convertIterable(i);
System.out.println("Collection (Iterable to Collection) = "+c);
}
}输出结果
Collection (Iterable to Collection) = [50, 100, 150, 200, 250, 300, 500, 800, 1000]
热门推荐
1 祝福语简短古诗词
10 宝宝新生入学祝福语简短
11 姐姐女儿结婚祝福语简短
12 初升高祝福语家长简短
13 元旦联谊祝福语简短精辟
14 车行销售祝福语简短
15 八十大寿简短祝福语
16 女神节日简短祝福语大全
17 同事有趣祝福语大全简短
18 写给老师祝福语简短大学