" List: An ordered collection of data items; i.e. you know exactly where each item is in the list.
A list can contain duplicate elements. ArrayList, LinkedList, and Vector are the classes that
implement the List interface.
" Map: An object that maps keys to values: each key can map to at most one value. Maps cannot
contain duplicate keys. HashMap and HashTable are examples of classes that implement the
Map interface. No duplicate keys are allowed in maps; duplicate values are allowed.
" Set: A collection of unique items; i.e. there are no duplicates. HashSet and LinkedHashSet are
examples of classes that implement the Set interface.
Collection is the super Interface of List and Set
ArrayCollection is not a class or interface in Java
Good luck
Main Topics
Browse All Topics





by: CEHJPosted on 2009-11-08 at 09:46:32ID: 25771163
This will take you through the different collections and their uses:
ooks/tutor ial/collec tions/ inde x.html
http://java.sun.com/docs/b