public member function
<set>
const_reverse_iterator crend() const noexcept;
返回指向反向结尾的const_reverse_iterator
返回一个const_reverse_iteratorpointing to the element that would theoretically precede the first element in the container (which is considered its reverse end).
返回值
Aconst_reverse_iterator指向序列的反向结束。
成员类型const_reverse_iterator是一个指向 const 元素的 双向迭代器 类型。
示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// multiset::crbegin/crend
#include <iostream>
#include <set>
int main ()
{
std::multiset<int> mymultiset = {10,20,30,20,10};
std::cout << "mymultiset backwards:";
for (auto rit=mymultiset.crbegin(); rit != mymultiset.crend(); ++rit)
std::cout << ' ' << *rit;
std::cout << '\n';
return 0;
}
|
输出
mymultiset backwards: 30 20 20 10 10
|
数据竞争
访问容器。
同时访问 multiset 的元素是安全的。
异常安全
无异常保证:此成员函数从不抛出异常。
还可以保证返回的迭代器的复制构造或赋值永远不会引发异常。