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

请参见

参考

vector Class

标准模板库