Sunday, November 23, 2025
HomeLanguagesJavaDoubleStream count() in Java with examples

DoubleStream count() in Java with examples

DoubleStream count() returns the count of elements in the stream. DoubleStream count() is present in java.util.stream.DoubleStream. This is a special case of a reduction i.e, it takes a sequence of input elements and combines them into a single summary result.
Syntax :

long count()

Note : This is a terminal operation i.e, it may traverse the stream to produce a result or a side-effect. After the terminal operation is performed, the stream pipeline is considered consumed, and can no longer be used.

Example 1 : Count the elements in 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);
    }
}


Output:

7

Example 2 : Count distinct elements in 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);
    }
}


Output:

5
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS