次の方法で共有


list::cend

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

const_iterator cend( ) const;

戻り値

list Classに最後の要素の次の場所を指す定数の双方向反復子。list が空の場合、list::cend == list::begin。

解説

反復子が listの最後に到達したかどうかをテストするためにcend が使用されます。

使用例

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

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::const_iterator c1_cIter;
   
   c1.push_back( 10 );
   c1.push_back( 20 );
   c1.push_back( 30 );

   c1_cIter = c1.cend( );
   c1_cIter--;
   cout << "The last integer of c1 is " << *c1_cIter << endl;
}
  

必要条件

ヘッダー: <list>

名前空間: std

参照

関連項目

list Class

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