Difference between Stream.of() and Arrays.stream() method in Java

Arrays.stream()
The stream(T[] array) method of Arrays class in Java, is used to get a Sequential Stream from the array passed as the parameter with its elements. It returns a sequential Stream with the elements of the array, passed as parameter, as its source. Example:Â
Java
// Java program to demonstrate Arrays.stream() methodÂ
import java.util.*;import java.util.stream.*;Â
class GFG {Â Â Â Â public static void main(String[] args)Â Â Â Â {Â
        // Creating a String array        String[] arr = { "Geeks", "for", "Geeks" };Â
        // Using Arrays.stream() to convert        // array into Stream        Stream<String> stream = Arrays.stream(arr);Â
        // Displaying elements in Stream        stream.forEach(str -> System.out.print(str + " "));    }} |
Output:
Geeks for Geeks
Stream.of()
The Stream of(T… values) returns a sequential ordered stream whose elements are the specified values. Stream.of() method simply calls the Arrays.stream() method for non-primitive types. Example:Â
Java
// Java code for Stream of(T... values)// to get a sequential ordered stream whose// elements are the specified values.Â
import java.util.*;import java.util.stream.Stream;Â
class GFG {Â
    // Driver code    public static void main(String[] args)    {        // Creating an Stream        Stream stream = Stream.of("Geeks", "for", "Geeks");Â
        // Displaying the sequential ordered stream        stream.forEach(str -> System.out.print(str + " "));    }} |
Output:
Geeks for Geeks
These both methods are the two most commonly used methods for creating a sequential stream from a specified array. Both these methods returns a Stream<T> when called with a non-primitive type T.
Difference between Arrays.stream() and Stream.of()
Even if Stream.of() is a wrapper over the Arrays.stream() method, there are certain point of differences which clarifies as when to use a Arrays.stream() or when to use Stream.of(). Below are some of the differences between the above two stated methods:
- Different return types: For primitives arrays (like int[], long[] etc), Arrays.stream() and Stream.of() have different return types. Example: Passing an integer array, the Stream.of() method returns Stream whereas Arrays.stream() returns an IntStream.Â
Java
// Java program to demonstrate return type// of Arrays.stream() and Stream.of() method// for primitive arraysÂ
import java.util.*;import java.util.stream.*;Â
class GFG {Â
    public static void main(String[] args)    {        // Creating an integer array        int arr[] = { 1, 2, 3, 4, 5 };Â
        // --------- Using Arrays.stream() ---------Â
        // to convert int array into Stream        IntStream intStream = Arrays.stream(arr);Â
        // Displaying elements in Stream        intStream.forEach(str -> System.out.print(str + " "));Â
        // --------- Using Stream.of() ---------Â
        // to convert int array into Stream        Stream<int[]> stream = Stream.of(arr);Â
        // Displaying elements in Stream        stream.forEach(str -> System.out.print(str + " "));    }} |
Output:
1 2 3 4 5 [I@404b9385
- Stream.of() needs flattening whereas Arrays.stream() does not: As the ideal class used for processing of Streams of primitive types are their primitive Stream types (like IntStream, LongStream, etc). Therefore Stream.of() needs to be explicitly flattened into its primitive Stream before consuming. Example:Â
Java
// Java program to demonstrate need of flattening// Stream.of() method returned type for primitive arraysÂ
import java.util.*;import java.util.stream.*;Â
class GFG {Â
    public static void main(String[] args)    {        // Creating an integer array        int arr[] = { 1, 2, 3, 4, 5 };Â
        // --------- Using Arrays.stream() ---------Â
        // to convert int array into Stream        IntStream intStream = Arrays.stream(arr);Â
        // Displaying elements in Stream        intStream.forEach(str -> System.out.print(str + " "));Â
        // --------- Using Stream.of() ---------Â
        // to convert int array into Stream        Stream<int[]> stream = Stream.of(arr);Â
        // ***** Flattening of Stream<int[]> into IntStream *****Â
        // flattenning Stream<int[]> into IntStream        // using flatMapToInt()        IntStream intStreamNew = stream.flatMapToInt(Arrays::stream);Â
        // Displaying elements in IntStream        intStreamNew.forEach(str -> System.out.print(str + " "));    }} |
Output:
1 2 3 4 5 1 2 3 4 5
- Stream.of() is generic whereas Arrays.stream is not: Arrays.stream() method only works for primitive arrays of int[], long[], and double[] type, and returns IntStream, LongStream and DoubleStream respectively. For other primitive types, Arrays.stream() won’t work. On the other hand, Stream.of() returns a generic Stream of type T (Stream). Hence, it can be used with any type. Example:
- For Arrays.stream() method:Â
Java
// Java program to demonstrate return type// of Arrays.stream() method// for primitive arrays of charÂ
import java.util.*;import java.util.stream.*;Â
class GFG {Â
    public static void main(String[] args)    {        // Creating a character array        char arr[] = { '1', '2', '3', '4', '5' };Â
        // --------- Using Arrays.stream() ---------        // This will throw errorÂ
        // to convert char array into Stream        Arrays.stream(arr);    }} |
- Output:
Compilation Error in java code :- prog.java:20: error: no suitable method found for stream(char[]) Arrays.stream(arr); ^
- For Stream.of() method:Â
Java
// Java program to demonstrate return type// of Stream.of() method// for primitive arrays of charÂ
import java.util.*;import java.util.stream.*;Â
class GFG {Â
    public static void main(String[] args)    {        // Creating a character array        char arr[] = { '1', '2', '3', '4', '5' };Â
        // --------- Using Stream.of() ---------        // Will work efficientlyÂ
        // to convert int array into Stream        Stream<char[]> stream = Stream.of(arr);Â
        // Displaying elements in Stream        stream.forEach(str -> System.out.print(str + " "));    }} |
Output:
[C@548c4f57



