Java中的LongStream allMatch()

allMatch()LongStream类中的方法返回此流的所有元素是否与提供的谓词匹配。

语法如下。

boolean allMatch(LongPredicate predicate)

参数谓词是适用于此流元素的无状态谓词。LongPredicate表示一个长值参数的谓词。

要在Java中使用LongStream类,请导入以下软件包。

import java.util.stream.LongStream;

以下是allMatch()在Java中实现LongStream方法的示例。

示例

import java.util.stream.LongStream;
public class Demo {
   public static void main(String[] args) {
      LongStream longStream = LongStream.of(100L, 150L, 200L, 300L, 400L, 500L);
      boolean res = longStream.allMatch(a -> a > 50L);
      System.out.println("Do all the elements match the predicate? "+res);
   }
}

输出结果

Do all the elements match the predicate? true