vector::end

返回超过末尾迭代器。

iterator end( );  const_iterator end( ) const;

返回值

向量的超过末尾迭代器。 如果该向量为空,则 vector::end() == vector::begin()。

示例

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

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

要求

标头:<vector>

命名空间: std

请参见

参考

vector 类

标准模板库