本套JAVA8教程由于是有英文翻译过来的,如果有翻译不对的地方还请多多包涵。
本节课先简单的介绍下Java8有哪些新特性,对于Java6/7版本做出哪些更改.那废话不多说,赶紧开始今天的课程吧.
本节课内容其实在前面已经提到过了部分函数,如collect(Collectors.toList())
那就简单的看下代码吧
Map to List
public static void main(String[] args) {
Map map = new HashMap<>();
map.put(10, "apple");
map.put(20, "orange");
map.put(30, "banana");
map.put(40, "watermelon");
map.put(50, "dragonfruit");
System.out.println("\n1. Export Map Key to List...");
List result = map.entrySet().stream()
.map(x -> x.getKey())
.collect(Collectors.toList());
result.forEach(System.out::println);
System.out.println("\n2. Export Map Value to List...");
List result2 = map.entrySet().stream()
.map(x -> x.getValue())
.collect(Collectors.toList());
result2.forEach(System.out::println);
System.out.println("\n1. Export Map Key to List...");
List result = new ArrayList<>(map.keySet());
result.forEach(System.out::println);
System.out.println("\n2. Export Map Value to List...");
List result2 = new ArrayList<>(map.values());
result2.forEach(System.out::println);
}
其实上述可以不使用java8照样实现,但还是稍微重温一下java8的写法
欢迎小伙伴浏览哦