Table of Contents [hide]
In this post, we will see about Java 8 Stream‘s of method example.
stream‘s of method is static method and used to create stream of given type.
For example:
There are two overloaded version of Stream’s of method.
1) static <T> Stream<T> of(T… values)
Returns a sequential ordered stream whose elements are the specified values.
2) static <T> Stream<T> of(T t)
Returns a sequential Stream containing a single element.
Java Stream of example
Create a class named Java8StreamOfExample as below:
When you run above program, you will get below output:
India
China
Bhutan
Nepal
China
Bhutan
Nepal
Another example
When you run above program, you will get below output:
4.0
6.8
8.6
6.8
8.6
Was this post helpful?
Let us know if this post was helpful. Feedbacks are monitored on daily basis. Please do provide feedback as that\'s the only way to improve.