美文网首页
Java8 教程第十四章之Stream Map to List

Java8 教程第十四章之Stream Map to List

作者: PrimaryKeyEnoch | 来源:发表于2019-08-13 06:13 被阅读0次

    本套JAVA8教程由于是有英文翻译过来的,如果有翻译不对的地方还请多多包涵。

    本节课先简单的介绍下Java8有哪些新特性,对于Java6/7版本做出哪些更改.那废话不多说,赶紧开始今天的课程吧.

    本节课内容其实在前面已经提到过了部分函数,如collect(Collectors.toList())

    那就简单的看下代码吧

    Map to List

    public static void main(String[] args) {
    
            Map<Integer, String> 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<Integer> 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<String> 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<Integer> result = new ArrayList<>(map.keySet());
            result.forEach(System.out::println);
    
    
            System.out.println("\n2. Export Map Value to List...");
            List<String> result2 = new ArrayList<>(map.values());
            result2.forEach(System.out::println);
        }
    

    其实上述可以不使用java8照样实现,但还是稍微重温一下java8的写法

    欢迎小伙伴浏览哦

    相关文章

      网友评论

          本文标题:Java8 教程第十四章之Stream Map to List

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