Collection is an in-memory data structure, which holds all the values that the data structure currently has. Every element in the Collection has to be computed before we add it to the Collection. Operations such as searching, sorting, insertion, manipulation, and deletion can be performed on a Collection. It provides many interfaces like (Set, List, Queue, Deque) and Classes like (ArrayList, Vector, LinkedList, PriorityQueue, HashSet).

On the other hand, IStream is an API that is introduced in Java 8 which is used to process collections of objects. A stream is a sequence of objects that supports various methods which can be pipelined to produce the desired result. The Stream API is used to process collections of objects.
Main features of the Java stream are as follows:
- A stream is not a data structure instead it takes input from the Collections, Arrays, or I/O channels.
- Streams don’t change the original data structure, they only provide the result as per the pipelined methods.
- Each intermediate operation is lazily executed and returns another stream as a result, hence various intermediate operations can be pipelined. Terminal operations mark the end of the stream and return the result.
Example 1: Collections
Java
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args)
{
List<String> CompanyList = new ArrayList<>();
CompanyList.add( "Google" );
CompanyList.add( "Apple" );
CompanyList.add( "Microsoft" );
Comparator<String> com
= (String o1, String o2) -> o1.compareTo(o2);
Collections.sort(CompanyList, com);
for (String name : CompanyList) {
System.out.println(name);
}
}
}
|
OutputApple
Google
Microsoft
Example: Streams
Java
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args)
{
List<String> CompanyList = new ArrayList<>();
CompanyList.add( "Google" );
CompanyList.add( "Apple" );
CompanyList.add( "Microsoft" );
CompanyList.stream().sorted().forEach(
System.out::println);
}
}
|
OutputApple
Google
Microsoft
Let us tabulate the difference between them which is as follows:
STREAMS | COLLECTIONS |
---|
It doesn’t store data, it operates on the source data structure i.e collection. | It stores/holds all the data that the data structure currently has in a particular data structure like Set, List or Map, |
They use functional interfaces like lambda which makes it a good fit for programming language. | They don’t use functional interfaces. |
Java Streams are consumable i.e; to traverse the stream, it needs to be created every time. | They are non-consumable i.e; can be traversable multiple times without creating it again. |
Java streams support both sequential and parallel processing. | It supports parallel processing and parallel processing can be very helpful in achieving high performance. |
All the Java stream API interfaces and classes are in java.util.stream package. | Specific classes for primitive types such as IntStream, LongStream, and DoubleStream are used in collections since primitive data types such as int, long in the collections using auto-boxing and these operations could take a lot of time. |
Streams are not modifiable i.e one can’t add or remove elements from streams. | These are modifiable i.e one can easily add to or remove elements from collections. |
Streams are iterated internally by just mentioning the operations. | Collections are iterated externally using loops. |