vote up 1 vote down star

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

flag

5 Answers

vote up 8 vote down check

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.

link|flag
vote up 3 vote down

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.

link|flag
+1 for Sun's Collection tutorial. IMO, the best place to start. – Bill the Lizard Aug 17 at 15:56
ah forgot about the google collections. – Chii Aug 31 at 11:13
vote up 2 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.