Java / Java8 streams
Difference between Collection and Stream in Java 8.
Collection has its own elements, but Stream doesn't have. Stream works on a view, which points to elements that are actually stored by Collection or array. Any changes made on Stream don't reflect on the original Collection.
More Related questions...