As the title say I am looking into the \"Differences between an array and any collection from the java Collection framework\".
Thought it\'s high level enough to provide
There are 5 differences between Array and Collection as given below :
Arrays are fixed in size, whereas some Collections are grow-able in nature.
Arrays store homogeneous data. Collections store both homogeneous as well as heterogeneous data.
In Arrays, there are no underlining data structures, whereas Collections have underlining data structures.
Arrays are recommended for performance, whereas Collections are not.
Arrays use more memory space as compared to Collections.
6 difference between Arrays and Collections are following:
They are virtually unreleated, except to say they both store a group of values.
From a capability perspective, while both can store references to objects:
Integer
etc)One important difference, commonly not understood by programmers new to java, is one of usability and convenience, especially given that Collections automatically expand in size when needed:
Arrays are ultimately the only way of storing a group of primitives/references in one object, but they are the most basic option. Although arrays may give you some speed advantages, unless you need super-fast code, Collections are preferred because they have so much convenience.