次の方法で共有


list::rbegin

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

const_reverse_iterator rbegin( ) const;
reverse_iterator rbegin( );

戻り値

逆順のリストの最初の要素 (アドレスは、通常、リストの最後の要素では、逆) アドレスの双方向反復子。

解説

rbegin は逆順のリストと 開始します。 がリストで使用するように使用されます。

rbegin の戻り値が const_reverse_iteratorに割り当てられている場合、リスト オブジェクトは変更できません。rbegin の戻り値が reverse_iteratorに割り当てられている場合、リスト オブジェクトは変更できます。

リスト内を逆方向の反復処理にrbegin を使用できます。

使用例

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

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::iterator c1_Iter;
   list <int>::reverse_iterator c1_rIter;

   // If the following line replaced the line above, *c1_rIter = 40;
   // (below) would be an error
   //list <int>::const_reverse_iterator c1_rIter;
   
   c1.push_back( 10 );
   c1.push_back( 20 );
   c1.push_back( 30 );
   c1_rIter = c1.rbegin( );
   cout << "The last element in the list is " << *c1_rIter << "." << endl;

   cout << "The list is:";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;

   // rbegin can be used to start an iteration through a list in 
   // reverse order
   cout << "The reversed list is:";
   for ( c1_rIter = c1.rbegin( ); c1_rIter != c1.rend( ); c1_rIter++ )
      cout << " " << *c1_rIter;
   cout << endl;

   c1_rIter = c1.rbegin( );
   *c1_rIter = 40;
   cout << "The last element in the list is now " << *c1_rIter << "." << endl;
}
  
  

必要条件

ヘッダー: <list>

名前空間: std

参照

関連項目

list Class

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