Java8的allMatch

allMatch

@Test
public void stream_allMatch() {

    boolean containVowel = games.stream().allMatch(
            game -> game.getName().contains("a"));

    assertTrue(containVowel);

}

doc

相關文章
相關標籤/搜索