std::basic_string<CharT,Traits,Allocator>::rbegin, std::basic_string<CharT,Traits,Allocator>::crbegin
来自 cppreference.com
< cpp | string | basic string
reverse_iterator rbegin(); |
(1) | (自 C++11 起 noexcept) (自 C++20 起 constexpr) |
const_reverse_iterator rbegin() const; |
(2) | (自 C++11 起 noexcept) (自 C++20 起 constexpr) |
const_reverse_iterator crbegin() const noexcept; |
(3) | (自 C++11 起) (自 C++20 起 constexpr) |
返回指向反转字符串的第一个字符的反向迭代器。它对应于非反转字符串的最后一个字符。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向第一个字符的反向迭代器。
[编辑] 复杂度
常数。
[编辑] 注释
libc++ 将 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++11) |
返回指向末尾的反向迭代器 (公有成员函数) |
返回指向开头的反向迭代器 ( std::basic_string_view<CharT,Traits> 的公有成员函数) |