Finally, Collections

Problem

You’re having trouble keeping track of all these lists, sets, and iterators.

Solution

There’s a pattern to it. See Figure 7-3 and Table 7-2.

Discussion

Figure 7-3, in the fashion of the package-level class diagrams in the Java in a Nutshell books, shows the collection-based classes from package java.util.

The Collections Framework

Figure 7-3. The Collections Framework

See Also

The Javadoc documentation on Collections, Arrays, List, Set, and the classes that implement them provides more details than there’s room for here. Table 7-2 may further help you to absorb the regularity of the Collections Framework.

Table 7-2. Java Collections

Interfaces

Implementations

Resizable array

Hashed table

Linked list

Balanced tree

Set
 
HashSet
 
TreeSet
List
ArrayList, Vector
 
LinkList
 
Map
 
HashMap, Hashtable
 
TreeMap

Get Java Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.