Predicate API新增
- static <T> Predicate<T> not(Predicate<? super T> target)
断言转非
java
Optional.of(" ")
// 非空白字符串
.filter(Predicate.not(String::isBlank))
// 将抛出NoSuchElementException
.orElseThrow();
1
2
3
4
5
2
3
4
5