Java中的DoubleStream count()方法

count()DoubleStream类的方法返回流中元素的计数。

语法如下:

long count()

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

import java.util.stream.DoubleStream;

创建DoubleStream并添加一些元素:

DoubleStream doubleStream = DoubleStream.of(50.8, 67.9, 35.7, 23.6, 89.9);

现在,获取DoubleStream中的元素计数:

long res = doubleStream.count();

以下是count()在Java中实现DoubleStream方法的示例:

示例

import java.util.stream.DoubleStream;

public class Demo {

   public static void main(String[] args) {

      DoubleStream doubleStream = DoubleStream.of(50.8, 67.9, 35.7, 23.6, 89.9);

      long res = doubleStream.count();

      System.out.println("Count of elements in the stream = "+res);

   }

}

输出结果

Count of elements in the stream = 5

以上是 Java中的DoubleStream count()方法 的全部内容, 来源链接: utcz.com/z/356033.html

回到顶部