std::basic_string<CharT,Traits,Allocator>::rend, std::basic_string<CharT,Traits,Allocator>::crend
来自 cppreference.com
< cpp | string | basic string
reverse_iterator rend(); |
(1) | (自 C++11 起 noexcept) (自 C++20 起 constexpr) |
const_reverse_iterator rend() const; |
(2) | (自 C++11 起 noexcept) (自 C++20 起 constexpr) |
const_reverse_iterator crend() const noexcept; |
(3) | (自 C++11 起) (自 C++20 起 constexpr) |
返回指向反转字符串最后一个字符后的字符的反向迭代器。它对应于未反转字符串第一个字符之前的字符。此字符充当占位符,尝试访问它会导致未定义的行为。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向最后一个字符后的字符的反向迭代器。
[编辑] 复杂度
常数。
[编辑] 注释
libc++ 将 crend()
反向移植到 C++98 模式。
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <string> int main() { std::string p("[A man, a plan, a canal: Panama]"); std::string q; std::copy(p.crbegin(), p.crend(), std::back_inserter(q)); std::cout << "q = " << q << '\n'; std::copy(q.crbegin(), q.crend(), p.rbegin()); std::cout << "p = " << p << '\n'; }
输出
q = ]amanaP :lanac a ,nalp a ,nam A[ p = ]amanaP :lanac a ,nalp a ,nam A[
[编辑] 另请参阅
(C++11) |
返回指向开头的反向迭代器 (公有成员函数) |
返回指向结尾的反向迭代器 ( std::basic_string_view<CharT,Traits> 的公有成员函数) |