multiset::crbegin

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

const_reverse_iterator crbegin( ) const;

返回值

解决已撤消的多重集的第一个元素或满足您的 const 撤消双向迭代器位于 unreversed 多集的最后一个元素。

备注

开始 正使用包含多集,crbegin 使用已撤消的多个设置。

返回值 crbegin,不能修改多集合对象。

crbegin 可通过多集向后循环访问。

示例

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

int main( )
{
   using namespace std;   
   multiset <int> ms1;
   multiset <int>::const_reverse_iterator ms1_crIter;

   ms1.insert( 10 );
   ms1.insert( 20 );
   ms1.insert( 30 );

   ms1_crIter = ms1.crbegin( );
   cout << "The first element in the reversed multiset is "
        << *ms1_crIter << "." << endl;
}
  

要求

标头: <set>

命名空间: std

请参见

参考

multiset 类

标准模板库