命名空间
变体
操作

std::multiset<Key,Compare,Allocator>::rbegin, std::multiset<Key,Compare,Allocator>::crbegin

来自 cppreference.com
< cpp‎ | 容器‎ | multiset
 
 
 
 
reverse_iterator rbegin();
(1) (自 C++11 起为 noexcept)
const_reverse_iterator rbegin() const;
(2) (自 C++11 起为 noexcept)
const_reverse_iterator crbegin() const noexcept;
(3) (自 C++11 起)

返回指向反转的 multiset 的第一个元素的反向迭代器。它对应于非反转的 multiset 的最后一个元素。如果 multiset 为空,则返回的迭代器等于 rend().

range-rbegin-rend.svg

内容

[编辑] 参数

(无)

[编辑] 返回值

指向第一个元素的反向迭代器。

[编辑] 复杂度

恒定。

[编辑] 注释

因为 iteratorconst_iterator 都是常量迭代器(实际上它们可能属于相同类型),所以不可能通过这些成员函数返回的迭代器来修改容器的元素。

返回的反向迭代器的 底层迭代器结束迭代器。因此,如果结束迭代器失效,则返回的迭代器也会失效。

libc++ 将 crbegin() 反向移植到 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)
返回指向结束的反向迭代器
(公共成员函数) [编辑]
返回指向容器或数组开头的反向迭代器
(函数模板) [编辑]