Vector

Site Definition

vector

Vectors are sequence containers representing arrays that can change in size. . Just like arrays, vectors use contiguous storage locations for their elements, which means that their elements can also be accessed using offsets on regular pointers to its elements, and just as efficiently as in arrays. But unlike arrays, their size can change dynamically, with their storage being handled automatically by the container.


Children
  1. Member Functions
  2. Modification

Backlinks