I want to know: What is a collection in Java?
|
closed as not a real question by Bill the Lizard♦ Sep 6 '12 at 11:57
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Usually an instance of java.util.Collection (although java.util.Map is officially also a part of the collections framework) Although the Collection interface can be implemented directly, usually client code will use an implementation of one of the sub interfaces: Set, List, Queue / Deque Here is some sample code (on the left side you will usually see an interface and on the right side an implementation class). Sets don't store duplicates, all of their elements are unique:
SortedSets are a special case of sets that store elements in a specified order:
Lists let you store a value multiple times and access or modify insertion order:
There is also a practical shorthand for defining a list:
etc. To get a better understanding, read The Collections Trail from the Sun Java Tutorial (online), or Java Generics and Collections by Maurice Naftalin and Philip Wadler |
||||
|
|
|
Common examples of collections are: |
||||
|
It's a class that implements java.util.Collection interface. There's another branch for those that implement java.util.Map. These are the basis for data structures in Java: List, Set, LinkedList, HashMap, TreeMap, etc. |
|||
|
|
|
I think this question is best answered in a non-programming sense. Say you have 5 balls, and you want to move them around easily. You get a bad and place the 5 balls instead of it. The bag acts as a container. You can now move this bag around, and so quite easily the 5 balls move with it. Simply put, your holding zero or more objects, inside another object for easy retrieval. |
|||
|
|
|
Quoting Java API "A collection — sometimes called a container — is simply an object that groups multiple elements into a single unit." |
|||
|
|