Java Collections: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
=Overview= | =Overview= | ||
When using a Collection, the programmer manages the iteration over the collection elements, in a process called <span id="External_Iteration"></span>''external iteration''. The [[Java_8_Streams_API#Overview|Streams API]] provides an alternative way of processing Collections using ''internal iteration''. | When using a Collection, the programmer manages the iteration over the collection elements, in a process called <span id="External_Iteration"></span>''external iteration''. The [[Java_8_Streams_API#Overview|Streams API]] provides an alternative way of processing Collections using ''internal iteration''. Collections are mostly about storing and accessing data, whereas the Streams API is mostly about describing computations on data. |
Revision as of 22:08, 22 March 2018
External
Internal
Overview
When using a Collection, the programmer manages the iteration over the collection elements, in a process called external iteration. The Streams API provides an alternative way of processing Collections using internal iteration. Collections are mostly about storing and accessing data, whereas the Streams API is mostly about describing computations on data.