本篇讨论的是 : 不同集合的创建方式为什么是不同?
List,Set:
old Java: (看起来以前版本的更简单)
List<String> keywords = Arrays.asList("Apple", "Ananas", "Mango", "Banana", "Beer");
Set不存在Sets静态类,
参考资料
参考资料
Java 8:
Stream.of("Larry", "Moe", "Curly").collect(Collectors.toList());
Stream.of("Larry", "Moe", "Curly").collect(Collectors.toSet());
Array: 返回最原始array
Object[] array = Stream.of("Larry", "Moe", "Curly").toArray();
问题
1. 为什么创建array是直接使用toXXX, 而其他却需要使用collect
2. collectors是什么类
现象
1.这样创建collection的方式不直观, 而且操作也繁琐
Map
- 创建map(自增长数,String), 参考网站
String[] names = { "Larry", "Moe", "Curly" };
IntStream.range(0, names.length).boxed()
.collect(Collectors.toMap(i -> i, i -> names[i]))
.forEach((key, value) -> {
System.out.println("Key : " + key + " Value : " + value);
});
AtomicInteger index = new AtomicInteger();
Stream.of("Larry", "Moe", "Curly")
.collect(Collectors.toMap( s -> index.getAndIncrement(),s -> s))
.forEach((key, value) -> {
System.out.println("Key : " + key + " Value : " + value);
});
others
Stream.of("Larry", "Moe", "Curly").collect(Collectors.toCollection(TreeSet::new)).forEach(System.out::println);;
扩展:
- Stream和IntStream区别, 如名字所示, IntStream带有Int, 也就是专门处理数字相关任务. 上例子中, Lamabd式子中array是外部变量, 并非内部, 就可知.
- boxed的作用
以上可参考网站7. Primitive Stream
从上面Array,List,Set,Map的例子, 我认为创建原因不同是如下:
- Array是Java基本的类型, 所以可以直接输出
- 其他, 我认为主要是考虑到Map类型, 需要进行各种调配, 所以才放入collector.toXX, 又因为Map和Set,List 同属一个层次, 所以它俩都遭殃…
扩展:
Arrays 类
This class contains various methods for manipulating arrays (such as sorting and searching). This class also contains a static factory that allows arrays to be viewed as lists
API手册介绍得太泛, 只能说靠经验