您好,登錄后才能下訂單哦!
這篇文章主要介紹了Java9中StreamCollectors新增功能有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
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帶函數(shù)參數(shù)用于過濾輸入?yún)?shù),然后收集過濾元素:
@Testpublic 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 方法,但粒度更細。兩者都帶一個函數(shù)和一個收集器參數(shù)用于收集元素,但flatMapping函數(shù)接收元素流,然后通過收集器進行累積操作。首先我們看模型類:
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定義的組映射容器中:
@Testpublic 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中StreamCollectors新增功能有哪些”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。