共用方式為


list::crend

傳回 const 迭代器,其定址反轉清單中最後一個元素的下一個位置。

const_reverse_iterator rend( ) const;

傳回值

Const 反轉雙向迭代器,其定址反轉的 list 類別 中最後一個元素的下一個位置 (此位置在未反轉的 list 中優先於第一個元素)。

備註

crend 用於搭配反轉 list,就如同 list::end 用於搭配 list 一樣。

有 crend 的傳回值時,無法修改 list 物件。

crend 可以用來測試反轉迭代器是否已到達其 list 的結尾。

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 類別

標準樣板程式庫