vector::reserve
為向量物件保留最小儲存空間長度,並在必要時配置空間。
void reserve( size_type _Count );
參數
- _Count
配置給向量的最小儲存空間長度。
範例
// 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;
}
需求
標頭:<vector>
命名空間: std