我有
select *, (case when exists (select 1 from SAVE s where s.article_seq = a.seq)
then 1 else 0
end) as is_saved
from ARTICLE a;
我正在遍历List<int[]> allNumList = new ArrayList<>();
并匹配以下代码中的一个条件。
allNumList
我想使用Java 8进行上述代码。
答案 0 :(得分:19)
boolean noMatch = allNumList.stream()
.flatMapToInt(Arrays::stream)
.noneMatch(i -> i == numb);