Javatpoint Logo
Javatpoint Logo

Stream count() Function in Java

In Java, the count() function was introduced in Java 8 as a part of Java Stream API. It is used to count the number of elements in a Stream. It is terminal operation. The count() method may traverse the stream's items to provide a result or a side effect because it is a terminal operation. The stream pipeline is deemed spent after executing count(), and we are not allowed to utilize the stream again. In this section, we will discuss the uses of count() function with example and Java program.

Syntax

The method returns the number of elements in the stream.

Uses of count() Function

1. Counting Elements:

It is helpful when you just need to know how many elements there are in a stream overall.

2. Counting Distinct Elements:

We can use the count() function to count the number of distinct elements in a stream by combining distinguish() and count().

CountExample.java

Output:

Total number of elements: 7

CountDistinct.java

Output:

Total number of distinct elements: 4

Explanation

The stream() method is used to create a stream from a list of strings. Use the distinct() function to maintain distinct components in the stream. The result is then sent to the terminal using the count() method, which counts the unique elements.

CountObjects.java

Output:

Total count of students: 5

Explanation

First name, last name, and grade are the attributes that describe a Student class in the code. The Main class illustrates the fundamental use of Java Streams and class structures by computing and printing the total count of sample students obtained via the retrieveStudents() function. It is done by using Java Streams.

Advantages of count() Function

1. Parallel Processing

The count() operation can take advantage of parallel processing for large datasets, potentially improving performance. Parallel streams can be created using parallelStream().

2. Conditional Counting

Using the filter() operation in conjunction with count(), we can perform conditional counting based on specific criteria.

3. Performance Implications

While count() is generally efficient, it is crucial to be mindful of its usage with infinite streams. In such cases, the operation might never terminate.

4. Combining Multiple Count Operations

We can use the Collectors.counting() collector to obtain the count result as a Long type.

5. Counting with Grouping:

When working with grouped data, the counting() collector is useful for counting elements in each group.

Conclusion

In summary, Java's count() function is a vital tool for stream-based processing. Count() is a useful tool in many situations due to its efficiency and flexibility, which may be applied to counting simple items, different elements, or bespoke objects. Developers may fully utilize the Stream API for data analysis and modification by being aware of its syntax and use cases.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA