vector::reserve
Reserviert eine Mindestlänge von Speicher für ein Vektorobjekt und weist Speicherplatz zu, falls erforderlich.
void reserve( size_type _Count );
Parameter
- _Count
Die minimale Speicherlänge, die für für den Vektor zugeordnet werden soll.
Beispiel
// vector_reserve.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector<int> v1;
v1.push_back(1);
cout << "Current capacity of v1 = "
<< v1.capacity( ) << endl;
v1.reserve(20);
cout << "Current capacity of v1 = "
<< v1.capacity( ) << endl;
}
Anforderungen
Header: <vector>
Namespace: std