IntStream 的 empty() 方法在 Java 中


IntStream 类的 empty() 方法返回一个空顺序 IntStream。

语法如下

static IntStream empty()

以下是你如何创建一个空 IntStream

IntStream intStream = IntStream.empty();

现在,使用 count() 方法可以检查流中的元素数量,为 0,因为我们创建了一个空流

IntStream intStream = IntStream.empty();

以下示例演示如何在 Java 中实现 IntStream empty() 方法

示例

 现场演示

import java.util.stream.IntStream;
public class Demo {
   public static void main(String[] args) {
      IntStream intStream = IntStream.empty();
      System.out.println("The number of elements in the stream = "+intStream.count());
   }
}

输出

The number of elements in the stream = 0

更新日期:2019-07-30

128 次浏览

开启你的职业生涯

通过完成课程获得认证

入门
广告