std::multiset<Key,Compare,Allocator>::rend, std::multiset<Key,Compare,Allocator>::crend
来自 cppreference.com
reverse_iterator rend(); |
(1) | (自 C++11 起无异常) |
const_reverse_iterator rend() const; |
(2) | (自 C++11 起无异常) |
const_reverse_iterator crend() const noexcept; |
(3) | (自 C++11 起) |
返回指向反转的 multiset
的最后一个元素之后的元素的反向迭代器。它对应于非反转的 multiset
的第一个元素之前的元素。此元素充当占位符,尝试访问它会导致未定义的行为。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向最后一个元素之后的元素的反向迭代器。
[编辑] 复杂度
常数。
注释
因为 iterator
和 const_iterator
都是常数迭代器(实际上它们可能是相同的类型),所以无法通过这些成员函数返回的迭代器修改容器的元素。
libc++ 将 crend()
反向移植到 C++98 模式。
[编辑] 示例
运行此代码
#include <iostream> #include <set> int main() { std::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++11) |
返回指向开头的反向迭代器 (公有成员函数) |
(C++14) |
返回容器或数组的反向结束迭代器 (函数模板) |