4
"items"목록이 있고 각 항목의 item.posts 속성은 post-instances 목록입니다.List anyMatch 스트림
나는 두 가지 속성에 의해 내 "항목"-list를 필터링 할 :
인 아이템의 게시물이 활성화 된 경우 "item.isBig는"와, 다음 반환 Stream
를 수집하는 경우
그러나 "i.getPosts # isEnabled"로 "anyMatch"를 수행하는 방법을 알지 못합니다. 당신이 collect
와 함께 사용할 수 있도록
items.stream()
.filter(Item::isBig)
.anyMatch(i.getPosts()->p.isEnabled) // this does not work
.collect(Collectors.toList());