std::flat_multiset<Key,Compare,KeyContainer>::rbegin, std::flat_multiset<Key,Compare,KeyContainer>::crbegin
来自 cppreference.com
reverse_iterator rbegin() noexcept; |
(1) | (自 C++23) |
const_reverse_iterator rbegin() const noexcept; |
(2) | (自 C++23) |
const_reverse_iterator crbegin() const noexcept; |
(3) | (自 C++23) |
返回指向反转的 flat_multiset
的第一个元素的反向迭代器。它对应于非反转 flat_multiset
的最后一个元素。如果 flat_multiset
为空,则返回的迭代器等于 rend()。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向第一个元素的反向迭代器。
[编辑] 复杂度
常数。
[编辑] 注释
因为 iterator
和 const_iterator
都是常量迭代器(实际上可能相同类型),所以无法通过这些成员函数返回的迭代器修改容器的元素。
返回的反向迭代器的 底层迭代器 是 结束迭代器。因此,如果和当结束迭代器失效时,返回的迭代器也将失效。
[编辑] 示例
运行此代码
#include <iostream> #include <flat_set> int main() { std::flat_multiset<unsigned> rep{1, 2, 3, 4, 1, 2, 3, 4}; for (auto it = rep.crbegin(); it != rep.crend(); ++it) { for (auto n = *it; n > 0; --n) std::cout << "⏼" << ' '; std::cout << '\n'; } }
输出
⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼ ⏼
[编辑] 另请参阅
返回指向容器或数组末尾的反向迭代器 (公共成员函数) | |
(C++14) |
返回指向容器或数组开头的反向迭代器 (函数模板) |