std::inplace_vector<T,N>::rbegin, std::inplace_vector<T,N>::crbegin
来自 cppreference.com
constexpr reverse_iterator rbegin() noexcept; |
(1) | (自 C++26) |
constexpr const_reverse_iterator rbegin() const noexcept; |
(2) | (自 C++26) |
constexpr const_reverse_iterator crbegin() const noexcept; |
(3) | (自 C++26) |
返回指向反转的 inplace_vector
的第一个元素的反向迭代器。它对应于非反转 inplace_vector
的最后一个元素。如果 inplace_vector
为空,则返回的迭代器等于 rend().
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向第一个元素的反向迭代器。
[编辑] 复杂度
常数。
[编辑] 说明
返回的反向迭代器的 基础迭代器 是 结束迭代器。因此,当结束迭代器失效时,返回的迭代器也失效。
[编辑] 示例
运行这段代码
#include <algorithm> #include <inplace_vector> #include <iostream> #include <string> #include <string_view> void print(const std::string_view s) { std::cout << s << ' '; } int main() { const std::inplace_vector<std::string_view, 8> data { "▁", "▂", "▃", "▄", "▅", "▆", "▇", "█" }; std::inplace_vector<std::string, 8> arr(8); std::copy(data.cbegin(), data.cend(), arr.begin()); print("Print 'arr' in direct order using [cbegin, cend):\t"); std::for_each(arr.cbegin(), arr.cend(), print); print("\n\nPrint 'arr' in reverse order using [crbegin, crend):\t"); std::for_each(arr.crbegin(), arr.crend(), print); }
输出
Print 'arr' in direct order using [cbegin, cend): ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ Print 'arr' in reverse order using [crbegin, crend): █ ▇ ▆ ▅ ▄ ▃ ▂ ▁
[编辑] 另请参阅
返回指向结束的反向迭代器 (公共成员函数) | |
(C++14) |
返回指向容器或数组开头的反向迭代器 (函数模板) |