다음을 통해 공유


vector::end

최종 이전 반복기를 반환합니다.

iterator end( ); 
const_iterator end( ) const;

반환 값

벡터에 대 한 최종 이전 반복기입니다.벡터는 비어 있는 경우 vector::end() == vector::begin().

설명

경우 반환 값의 최종 형식의 변수에 할당 된 const_iterator, 벡터 개체를 수정할 수 없습니다.경우 반환 값의 최종 형식의 변수에 할당 된 반복기, 벡터 개체를 수정할 수 있습니다.

예제

// vector_end.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
   using namespace std;
   vector <int> v1;
   vector <int>::iterator v1_Iter;
   
   v1.push_back( 1 );
   v1.push_back( 2 );

   for ( v1_Iter = v1.begin( ) ; v1_Iter != v1.end( ) ; v1_Iter++ )
      cout << *v1_Iter << endl;
}
  

요구 사항

헤더: <vector>

네임 스페이스: std

참고 항목

참조

vector Class

표준 템플릿 라이브러리