您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Java9 Stream Collectors新增功能有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Java 9 Stream Collectors新增功能
Java 8 引入Collectors,用于累加輸入元素至可變的容器如,Map、List以及Set。本文看看Java 9 新增的兩個Collectors:Collectors.filtering 和 Collectors.flatMapping,主要用于和 Collectors.groupingBy 一起提供智能的元素集合.
Collectors.filtering方法
Collectors.filtering方法類似于Stream filter()方法,后者用于過濾輸入元素,但兩者的使用場景不同。Stream filter()在stream鏈接方法中使用,而Collectors.filtering方法被設計和 groupingBy一起使用。
Stream filter()首先過濾元素,然后再分組。被過濾的值被丟棄無法被追溯跟蹤。如果需要跟蹤需要先分組然后再過濾,這正是 Collectors.filtering能做的。
Collectors.filtering帶函數參數用于過濾輸入參數,然后收集過濾元素:
@Test public void givenList_whenSatifyPredicate_thenMapValueWithOccurences() { List<Integer> numbers = List.of(1, 2, 3, 5, 5); Map<Integer, Long> result = numbers.stream() .filter(val -> val > 3) .collect(Collectors.groupingBy(i -> i, Collectors.counting())); assertEquals(1, result.size()); result = numbers.stream() .collect(Collectors.groupingBy(i -> i, Collectors.filtering(val -> val > 3, Collectors.counting()))); assertEquals(4, result.size()); }
Collectors.flatMapping方法
Collectors.flatMapping類似于Collectors.mapping 方法,但粒度更細。兩者都帶一個函數和一個收集器參數用于收集元素,但flatMapping函數接收元素流,然后通過收集器進行累積操作。首先我們看模型類:
class Blog { private String authorName; private List<String> comments = new ArrayList<>(); public Blog(String authorName, String ... comment){ this.authorName = authorName; comments.addAll(Arrays.asList(comment)); } public String getAuthorName(){ return this.authorName; } public List<String> getComments(){ return comments; } }
Collectors.flatMapping 方法跳過中間集合,直接寫至單個有Collectors.groupingBy定義的組映射容器中:
@Test public void givenListOfBlogs_whenAuthorName_thenMapAuthorWithComments() { Blog blog1 = new Blog("1", "Nice", "Very Nice"); Blog blog2 = new Blog("2", "Disappointing", "Ok", "Could be better"); List<Blog> blogs = List.of(blog1, blog2); Map<String, List<List<String>>> authorComments1 = blogs.stream() .collect(Collectors.groupingBy(Blog::getAuthorName, Collectors.mapping(Blog::getComments, Collectors.toList()))); assertEquals(2, authorComments1.size()); assertEquals(2, authorComments1.get("1").get(0).size()); assertEquals(3, authorComments1.get("2").get(0).size()); Map<String, List<String>> authorComments2 = blogs.stream() .collect(Collectors.groupingBy(Blog::getAuthorName, Collectors.flatMapping(blog -> blog.getComments().stream(), Collectors.toList()))); assertEquals(2, authorComments2.size()); assertEquals(2, authorComments2.get("1").size()); assertEquals(3, authorComments2.get("2").size()); }
Collectors.mapping映射所有分組(作者的評論)值收集的器容器中,如List。并且刪除中間集合,直接存儲集合至收集器的容器。
關于“Java9 Stream Collectors新增功能有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。