vector::end

Returns a random-access iterator that points just beyond the end of the vector.

iterator end( ); 
const_iterator end( ) const;

Return Value

A random-access iterator to the end of the vector object. If the vector is empty, vector::end == vector::begin.

Remarks

If the return value of end is assigned to a variable of type const_iterator, the vector object cannot be modified. If the return value of end is assigned to a variable of type iterator, the vector object can be modified.

Example

// 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;
}

1 2

Requirements

Header: <vector>

Namespace: std

See Also

Reference

vector Class

Standard Template Library

Other Resources

vector Members