次の方法で共有


multiset::crend

逆順のマルチセット内の最後の要素の次の場所を指す定数反復子を返します。

const_reverse_iterator crend( ) const;

戻り値

逆順のマルチセット (通常マルチセットの最初の要素の前に記述した成功) 内の最後の要素の次の場所を指す定数反転双方向の場所を反復子。

解説

crend、反転したマルチセットと 終了 がマルチセットと併用するために使用されます。

crendの戻り値を使用して、マルチセット オブジェクトは変更できません。

反転反復子がマルチセットの最後に到達したかどうかをテストするためにcrend を使用できます。

crend によって返された値は逆参照しないでください。

使用例

// multiset_crend.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.crend( ) ;
   ms1_crIter--;
   cout << "The last element in the reversed multiset is "
        << *ms1_crIter << "." << endl;
}

出力

The last element in the reversed multiset is 10.

必要条件

ヘッダー: <set>

名前空間: std

参照

関連項目

multiset クラス

標準テンプレート ライブラリ