当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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


相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 DoubleStream count() in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。