다음을 통해 공유


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

표준 템플릿 라이브러리