Difference between revisions of "cpp/container/vector"
From cppreference.com
m (Text replace - "container/tdcl" to "container/dcl") |
m (Text replace - "/sidebar" to "/navbar") |
||
Line 1: | Line 1: | ||
{{cpp/title|vector}} | {{cpp/title|vector}} | ||
− | {{cpp/container/vector/ | + | {{cpp/container/vector/navbar}} |
{{ddcl | header=vector | | {{ddcl | header=vector | | ||
template< | template< |
Revision as of 12:30, 15 June 2012
Defined in header <vector>
|
||
template< class T, |
||
std::vector
is a container that supports fast random access to the elements and fast insertion or removal of elements at the end of the container. Fast element insertion or removal in the middle of the container is not supported. It is implemented as an contiguous array, which means that pointer arithmetic is fully supported, and a pointer to an element of a vector may be passed to any C function that expects a pointer to an element of an array.
std::vector
meets the requirements of Template:concept, Template:concept, Template:concept and Template:concept.
Contents |