java 8

Showing posts with label java 8. Show all posts
Showing posts with label java 8. Show all posts

Streams vs Collections in Java


 Streams vs CollectionsCollectionsStreamsThe collections are used to store & group data in data structures like List, Set, Map...etc.Streams are used to perform complex operations like filtering, matching, mapping, etc... on stored dataData modification can be done. You can add or remove data...