📜  Java中的 DoubleStream count() 示例

📅  最后修改于: 2022-05-13 01:55:05.627000             🧑  作者: Mango

Java中的 DoubleStream count() 示例

DoubleStream count()返回流中元素的计数。 DoubleStream count() 存在于Java.util.stream.DoubleStream 中。这是归约的一种特殊情况,即它采用一系列输入元素并将它们组合成一个汇总结果。
句法 :

long count()

注意:这是一个终端操作,即它可能会遍历流以产生结果或副作用。终端操作完成后,流管道被视为消耗,不能再使用。

示例 1:计算 DoubleStream 中的元素。

// Java code for DoubleStream count()
// to count the number of elements in
// given stream
import java.util.*;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // creating a DoubleStream
        DoubleStream stream = DoubleStream.of(2.3, 3.4, 4.5,
                                         5.6, 6.7, 7.8, 8.9);
  
        // storing the count of elements
        // in a variable named total
        long total = stream.count();
  
        // displaying the total number of elements
        System.out.println(total);
    }
}
输出:
7

示例 2:计算 DoubleStream 中的不同元素。

// Java code for DoubleStream count()
// to count the number of distinct
// elements in given stream
import java.util.*;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // creating a DoubleStream
        DoubleStream stream = DoubleStream.of(2.2, 3.3, 4.4,
                                        4.4, 7.6, 7.6, 8.0);
  
        // storing the count of distinct elements
        // in a variable named total
        long total = stream.distinct().count();
  
        // displaying the total number of elements
        System.out.println(total);
    }
}
输出:
5