次の方法で共有


list::crbegin

逆順のリストの最初の要素を指す定数反復子を返します。

const_reverse_iterator rbegin( ) const;

戻り値

逆順の list Class の最初の要素 (またはアドレスは、通常の list最後の要素だったもの) アドレスの双方向の定数反転反復子。

解説

crbegin は逆順のリストと list::begin が listで使用するように使用されます。

crbeginの戻り値を使用して、リスト オブジェクトは変更できません。リスト内を逆方向の反復処理にlist::rbegin を使用できます。

使用例

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

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::const_reverse_iterator c1_crIter;

   c1.push_back( 10 );
   c1.push_back( 20 );
   c1.push_back( 30 );
   c1_crIter = c1.crbegin( );
   cout << "The last element in the list is " << *c1_crIter << "." << endl;
}
  

必要条件

ヘッダー: <list>

名前空間: std

参照

関連項目

list Class

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