Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the containers in Java

Tags:

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

like image 470
derrdji Avatar asked Aug 17 '09 15:08

derrdji


1 Answers

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.

like image 79
Chii Avatar answered Oct 22 '22 09:10

Chii