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