Kinds of Containers
The STL has both container concepts and container types. The concepts are general categories with names such as container, sequence container, and associative container. The container types are templates you can use to create specific container objects. The original 11 container types are deque
, list
, queue
, priority_queue
, stack
, vector
, map
, multimap
, set
, multiset
, and bitset
. (This chapter doesn’t discuss bitset
, which is a container for dealing with data at the bit level.) C++11 adds forward_list
, unordered_map
, unordered_multimap
, unordered_set
, and unordered_multiset
, and it moves bitset
from the container category into its own separate category. Because the concepts categorize the types, let’s start with them.
Container ...
Get C++ Primer Plus 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.