public member function
<string>
const_reverse_iterator crbegin() const noexcept;
返回指向反向起始位置的 const_reverse_iterator
返回一个const_reverse_iteratorpointing to the last character of the string (i.e., its reverse beginning).
返回值
Aconst_reverse_iteratorto the reverse beginning of the string.
成员类型const_reverse_iterator是一个反向随机访问迭代器类型,它指向一个常量字符。
示例
1 2 3 4 5 6 7 8 9 10 11 12 13
|
// string::crbegin/crend
#include <iostream>
#include <string>
int main ()
{
std::string str ("lorem ipsum");
for (auto rit=str.crbegin(); rit!=str.crend(); ++rit)
std::cout << *rit;
std::cout << '\n';
return 0;
}
|
输出
异常安全
无异常保证:此成员函数从不抛出异常。
还可以保证返回的迭代器的复制构造或赋值永远不会引发异常。