public member function
<map>
const_reverse_iterator crbegin() const noexcept;
返回指向反向起始位置的 const_reverse_iterator
返回一个const_reverse_iteratorpointing to the last element in the container (i.e., its reverse beginning).
示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// multimap::crbegin/crend
#include <iostream>
#include <map>
int main ()
{
std::multimap<char,int> mymultimap = { {'x',100}, {'y',200}, {'x',300} };
// print content:
std::cout << "mymultimap backwards:";
for (auto rit = mymultimap.crbegin(); rit != mymultimap.crend(); ++rit)
std::cout << " [" << rit->first << ':' << rit->second << ']';
std::cout << '\n';
return 0;
}
|
输出
mymultimap backwards: [y:200] [x:300] [x:100]
|
数据竞争
访问容器。
调用不访问任何容器中的元素,但返回的迭代器可用于访问它们。并发访问或修改不同元素是安全的。
异常安全
无异常保证:此成员函数从不抛出异常。
还可以保证返回的迭代器的复制构造或赋值永远不会引发异常。