Resizing a Vector
This lesson teaches how a vector can be resized or how it can grow and shrink.
We'll cover the following...
Add Elements to the Vector
- Define a mutable vector variable.
- To add elements to the vector, use the
push
method.
The following illustration shows how the size of the vector grows by adding ...