次の方法で共有


list::crend

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

const_reverse_iterator rend( ) const;

戻り値

逆順の list Class (通常 listの最初の要素の前) に成功したする最後の要素の場所を指す定数逆順の双方向場所を反復子。

解説

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

crend の戻り値で list オブジェクトを変更することはできません。

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

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

使用例

// list_crend.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.crend( );
   c1_crIter --;  // Decrementing a reverse iterator moves it forward in 
                 // the list (to point to the first element here)
   cout << "The first element in the list is: " << *c1_crIter << endl;
}
  

必要条件

ヘッダー: <list>

名前空間: std

参照

関連項目

list Class

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