Pages

Sunday, August 27, 2017

Introduction to Java Collection over Arrays

Arrays Vs Collections

 An array is an indexed collection of fixed number of homogeneous data elements.
 The main advantageous of array is we can represent multiple values by using single variable. So
 that readability of the code will be improved.

29. Collection over Arrays