Ensure there's room for at least 1000 elements : vector reserve « vector « C++ Tutorial






#include <iostream>
#include <vector>

using namespace std;
typedef vector<int> INTVECTOR;

int main(void)
 {
   // Dynamically allocated vector begins with 0 elements.
   INTVECTOR theVector;

   theVector.push_back(42);

   // Ensure there's room for at least 1000 elements.
   theVector.reserve(1000);
   cout << endl << "After reserving storage for 1000 elements:" << endl;
   cout << "theVector's size is: " << theVector.size() << endl;
   cout << "theVector's maximum size is: " << theVector.max_size()<< endl;
   cout << "theVector's capacity is: " << theVector.capacity() << endl;

 }








16.21.vector reserve
16.21.1.Reserving Space in a Vector
16.21.2.Reserve memory for five elements to avoid reallocation
16.21.3.Ensure there's room for at least 1000 elements