What are the containers in Java

后端 未结 6 599
时光说笑
时光说笑 2020-12-14 02:09

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

6条回答
  •  轮回少年
    2020-12-14 02:57

    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.

提交回复
热议问题