views:

193

answers:

5

Could anyone please give me a brief full list of containers in Java? some of the ones I know are Array, Arraylist, Hashtable, HashMap, HatSet, Node, NodeList, TreeNode, TreeMap

+8  A: 

essentially, all the docs about java "containers", or better known as collections, is here, with the most useful page being this one, brief list here. There are other implementations of the collections framework, like the fastutils framework that gives better performance if you knew the type you were going to use. Also Gnu Trove is another one similar to fastutils.

Chii
A: 

A good start is looking at which classes implement Collection<E> and Map<K,V>.

Sebastian P.
A: 

I don't know if I can give you a complete exhaustive list, but I believe most of the standard Java API containers should reside in the java.util package.

jtbradle
+2  A: 

Have a look-see at the Java Collections API, and at this page for more information

yalestar
+3  A: 

There is a very nice cheatsheet for Java Collections. You can also check at official Sun tutorial.

EDIT

Check also the Google Collections library:

The Google Collections is a set of new collection types, implementations and related goodness for Java 5 and higher, brought to you by Google. It is a natural extension of the Java Collections Framework you already know and love.

dfa
+1 for Sun's Collection tutorial. IMO, the best place to start.
Bill the Lizard
ah forgot about the google collections.
Chii