In this guide we will learn how to use IntStream in Java.
You might have encountered IntStream while working in your project.
Time to go into some in-depth details!
Basically, IntStream is a special form of stream for working with primitive int values.
Before performing any operation on IntStream, let us first understand how they are created.
Creating IntStream
Using IntStream.of() method
Below is the simple way of creating streams.
It creates stream from a fixed set of values you want.
|
|
Using IntStream.range() method
Using IntStream.range() creates a sequential stream based on given range from start(inclusive) to end(exclusive).
In the below example we need sequential int stream starting from 1 to 4.
|
|
Using IntStream.rangeClosed() method
It is similar to IntStream.range() but start and end are inclusive.
|
|
Using IntStream.iterate() method
IntStream.iterate() creates an infinite stream starting from an initial value and subsequent values are based on the logic provided to IntUnaryOperator.
In below example it creates stream starting from 3 and each subsequent element is multiplied by 2.
|
|
Using IntStream.generate() method
IntStream.generate() creates an infinite stream starting from an initial value and subsequent values are based on the logic provided by Supplier.
Here, Supplier generates random integer.
Since it is an infinite stream, we limit this by using limit() method and print each element as shown in below example.
|
|
Operations on IntStream
Now we will learn how to perform operations on IntStream.
Filter operation
We can filter IntStream elements as shown in below example.
Here we are filtering elements which are greater than 8.
|
|
Map operation
map() method applies function on each element of the stream and returns a new stream.
In below example we are returning double of each element by using map() method on IntStream.
|
|
Reduce operation
We can perform a single operation on all the elements which are present in the stream.
In the below example we sum all the integers which are present in the stream using reduce operation.
|
|
Getting maximum element in the IntStream
We can get maximum element in the IntStream using max() method.
Below example shows how to get maximum element in an IntStream.
|
|
Getting minimum element in the IntStream
We can get minimum element in the IntStream using min() method.
Below example shows how to get minimum element in an IntStream.
|
|
Getting average of all elements in the IntStream
We can get average of all elements in the IntStream using average() method.
Below example shows how to get average of all elements in an IntStream.
|
|
Getting sum of all elements in the IntStream
We can get sum of all elements in the IntStream using sum() method.
Below example shows how to get sum of all elements in an IntStream.
|
|
Getting count of all elements in the IntStream
We can get count of all elements in the IntStream using count() method.
Below example shows how to get count of all elements in an IntStream.
|
|
Converting IntStream to another data type
Convert IntStream to List
Since IntStream is stream of primitive ints we must first box the elements so that they are converted to Integer objects.
Then we can collect them in a List as shown in below example.
|
|
Convert IntStream to String
Below example showcases how to convert IntStream to String.
First you map integer to string using mapToObj
and then you join them using
`Collectors.joining'.
|
|
Convert IntStream to Stream
IntStream is a sequence of primitive integers.
To convert to Stream of Integer objects,we need to use ‘boxed()’ method which will return stream of Integer objects as shown in below example.
|
|
Conclusion
I hope you learnt how to create,manipulate and convert stream of integers using IntStream!!!!