vector::max_size
ベクターの最大長を返します。
size_type max_size( ) const;
戻り値
ベクターの最大許容長。
使用例
// vector_max_size.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
vector <int>::size_type i;
i = v1.max_size( );
cout << "The maximum possible length of the vector is " << i << "." << endl;
}
出力例
The maximum possible length of the vector is 1073741823.
必要条件
ヘッダー: <vector>
名前空間: std