Java / Java8 streams
What is the difference between Java8 Collections and Stream?
Collection contains its elements but stream doesn't. Stream act on a view while elements are actually stored in the Collection or array.
Any change made on streams does not reflect on the underlying collection.
More Related questions...