1.

What Is The Difference Between Collections And Stream In Java8 ?

Answer»

STREAM operations do the iterations internally over the source ELEMENTS provided, in contrast to COLLECTIONS where explicit ITERATION is required.

Stream operations do the iterations internally over the source elements provided, in contrast to Collections where explicit iteration is required.



Discussion

No Comment Found