Bootstrap

java8 查找方法(`findAny`)(`findFirst`)匹配方法(`anyMatch`)(`allMatch`)(`noneMatch`)、

5.3 查找和匹配

5.3.1 (anyMatch)“流中是否有一个元素能匹配给定的谓词”

boolean anyMatch(Predicate<? super T> predicate);

// 菜单里面是否有素食可选择
if(menu.stream().anyMatch(Dish::isVegetarian)){
    System.out.println("The menu is (somewhat) vegetarian friendly!!");
}

5.3.2 (allMatch)流中的元素是否能匹配给定的谓词

boolean allMatch(Predicate<? super T> predicate);

boolean isHealthy = menu.stream().allMatch(d -> d.getCalories() < 1000);

5.3.3 (noneMatch)流中没有任何元素与给定的谓词匹配

boolean noneMatch(Predicate<? super T> predicate);

boolean isHealthy = menu.stream().noneMatch(d -> d.getCalories() >= 1000);

[Q&A] java8 短路操作
allMatchanyMatchnoneMatchfindFirstfindAnylimit

最佳实践:判断是否满足

---------------------------------------------
# 任意满足
List<Person> list = new ArrayList<>();
# 写法1
boolean present2 = list.stream().anyMatch(a -> a.getAge() > 10);
# 写法2
boolean present1 = list.stream().filter(a -> a.getAge() > 10).findAny().isPresent();
---------------------------------------------
# 全部满足
boolean present3 = list.stream().allMatch(a -> a.getAge() > 10);

Boolean high = true;
Boolean rich = true;
Boolean cool = true;
boolean b = Stream.of(high, rich, cool).allMatch(BooleanUtils::isTrue);
---------------------------------------------
# 全不满足
boolean present4 = list.stream().noneMatch(a -> a.getAge() > 10);

在这里插入图片描述

5.3.3 查找元素(findAny

findAny方法将返回当前流中的任意元素。

Optional<T> findAny();

Optional<Dish> dish = menu.stream().filter(Dish::isVegetarian).findAny();

5.3.4 查找第一个元素(findFirst

Optional<T> findFirst();

List<Integer> someNumbers = Arrays.asList(1, 2, 3, 4, 5);
Optional<Integer> firstSquareDivisibleByThree = someNumbers.stream().filter(x -> x % 3 == 0).findFirst(); // 9

# 获取第一条数据
String str = list.stream().findFirst().orElse(null);

[Q&A] 为什么会同时有findFirst和findAny呢?
答案是 并行。找到第一个元素在并行上限制更多。如果你不关心返回的元素是哪个,请使用findAny,因为它在使用并行流时限制较少。

-----------------------------------------------------------------------------读书笔记摘自 书名:Java 8实战 作者:[英] Raoul-Gabriel Urma [意] Mario Fusco [英] Alan M

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;