list::begin

返回发现列表中第一个元素的位置的迭代器。

const_iterator begin( ) const; iterator begin( );

返回值

发现列表中第一个元素的位置或空列表之后的位置的双向迭代器。

备注

如果 begin 的返回值赋给了 const_iterator,则无法修改列表对象中的元素。 如果 begin 的返回值赋给了 iterator,则可以修改列表对象中的元素。

示例

// list_begin.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::iterator c1_Iter;
   list <int>::const_iterator c1_cIter;
   
   c1.push_back( 1 );
   c1.push_back( 2 );

   c1_Iter = c1.begin( );
   cout << "The first element of c1 is " << *c1_Iter << endl;

   *c1_Iter = 20;
   c1_Iter = c1.begin( );
   cout << "The first element of c1 is now " << *c1_Iter << endl;

   // The following line would be an error because iterator is const
   // *c1_cIter = 200;
}
  

要求

标头:<list>

命名空间: std

请参见

参考

list 类

标准模板库