std::basic_string<CharT,Traits,Allocator>::rbegin, std::basic_string<CharT,Traits,Allocator>::crbegin
来自cppreference.com
                    
                                        
                    < cpp | string | basic string
                    
                                                            
                    | (1) | ||
|   reverse_iterator rbegin();  | 
(C++11 前) | |
|   reverse_iterator rbegin() noexcept;  | 
 (C++11 起)  (C++20 前)  | 
|
|   constexpr reverse_iterator rbegin() noexcept;  | 
(C++20 起) | |
| (2) | ||
|   const_reverse_iterator rbegin() const;  | 
(C++11 前) | |
|   const_reverse_iterator rbegin() const noexcept;  | 
 (C++11 起)  (C++20 前)  | 
|
|   constexpr const_reverse_iterator rbegin() const noexcept;  | 
(C++20 起) | |
| (3) | ||
|   const_reverse_iterator crbegin() const;  | 
(C++11 前) | |
|   const_reverse_iterator crbegin() const noexcept;  | 
 (C++11 起)  (C++20 前)  | 
|
|   constexpr const_reverse_iterator crbegin() const noexcept;  | 
(C++20 起) | |
返回指向逆转字符串首字符的逆向迭代器。它对应非逆向字符串的末字符。
参数
(无)
返回值
指向首字符的逆向迭代器。
复杂度
常数。
注解
在 libstdc++ 中,crbegin() 不能在 C++98 模式中使用。
示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <string> int main() { std::string s("Exemplar!"); *s.rbegin() = 'y'; std::cout << s << '\n'; // "Exemplary" std::string c; std::copy(s.crbegin(), s.crend(), std::back_inserter(c)); std::cout << c << '\n'; // "yralpmexE" }
输出:
Exemplary yralpmexE
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
| 缺陷报告 | 应用于 | 出版时的行为 | 正确行为 | 
|---|---|---|---|
| LWG 1192 | C++98 |  std::string 没有成员函数 crbegin()
 | 
已添加 | 
参阅
|   返回指向末尾的逆向迭代器  (公开成员函数)  | |
|   返回指向起始的反向迭代器  ( std::basic_string_view<CharT,Traits> 的公开成员函数)  |