multiset::begin

返回解决在多个迭代器集的第一个元素。

const_iterator begin( ) const; 
iterator begin( );

返回值

用于在多集的第一个元素或一位置的双向迭代器成功空多集。

备注

如果 begin 的返回值分配为 const_iterator,不能修改多在集合对象的元素。 如果 begin 的返回值赋给 迭代器,则可修改多在集合对象的元素。

示例

// multiset_begin.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;   
   multiset <int> ms1;
   multiset <int>::iterator ms1_Iter;
   multiset <int>::const_iterator ms1_cIter;
   
   ms1.insert( 1 );
   ms1.insert( 2 );
   ms1.insert( 3 );

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

   ms1_Iter = ms1.begin( );
   ms1.erase( ms1_Iter );

   // The following 2 lines would err as the iterator is const
   // ms1_cIter = ms1.begin( );
   // ms1.erase( ms1_cIter );

   ms1_cIter = ms1.begin( );
   cout << "The first element of ms1 is now " << *ms1_cIter << endl;
}
  

要求

标头: <set>

命名空间: std

请参见

参考

multiset 类

标准模板库