Java 9 Stream Collectors新增功能

Java 9 Stream Collectors新增功能

Java 8 引入Collectors,用於累加輸入元素至可變的容器如,Map、List以及Set。本文看看Java 9 新增的兩個Collectors:Collectors.filtering 和 Collectors.flatMapping,主要用於和 Collectors.groupingBy 一起提供智能的元素集合.

1. 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());
}

2. 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。並且刪除中間集合,直接存儲集合至收集器的容器。

3. 總結

本文介紹Java 9 提供Collectors新的方法。Collectors.filtering() 和 Collectors.flatMapping() ,一般和Collectors.groupingBy() 一起使用。

這些收集器也可以與collector.partitioningby()一起使用,但是僅根據條件創建兩個分區,收集器的實際功能並沒有得到利用;因此在本教程中沒有提到。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章