Container class |
In object-oriented programming, a container class is a class of objects that is intended to contain other objects. These objects are usually allowed to be of any class, and may be of container classes themselves.
Examples of container classes include sets, lists, stacks, queues and maps.
The Java programming language Collections Framework provides Application Programming Interfaces and implementations for many kinds of container classes.|
|