list::crend
返回用于发现反向列表中最后一个元素之后的位置的常量迭代器。
const_reverse_iterator rend( ) const;
返回值
用于发现反向 list 类 中最后一个元素之后的位置(非反向 list 中第一个元素之前的位置)的常量反向双向迭代器。
备注
crend 可用于反向列表,就像 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