std::flat_multimap<Key,T,Compare,KeyContainer,MappedContainer>::rend, std::flat_multimap<Key,T,Compare,KeyContainer,MappedContainer>::crend

来自cppreference.com
 
 
 
 
reverse_iterator rend()noexcept;
(1) (C++23 起)
(C++26 起为 constexpr)
const_reverse_iterator rend()constnoexcept;
(2) (C++23 起)
(C++26 起为 constexpr)
const_reverse_iterator crend()constnoexcept;
(3) (C++23 起)
(C++26 起为 constexpr)

返回指向逆向的 *this 的尾后元素的逆向迭代器。它对应非逆向的 *this 的首元素的前一元素。

返回的迭代器仅表现为哨位。不保证它可解引用

range-rbegin-rend.svg

目录

[编辑]返回值

指向尾后元素的逆向迭代器。

[编辑]复杂度

常数。

[编辑]示例

#include <chrono>#include <iomanip>#include <iostream>#include <string_view>#include <flat_map>   usingnamespace std::chrono;   int main(){conststd::flat_multimap<year_month_day, int> messages {{February/17/2023, 10}, {February/17/2023, 20}, {February/16/2022, 30}, {October/22/2022, 40}, {June/14/2022, 50}, {November/23/2021, 60}, {December/10/2022, 55}, {December/12/2021, 45}, {April/1/2020, 42}, {April/1/2020, 24}};   std::cout<<"接受到消息(逆日期顺序):\n";for(auto it = messages.crbegin(); it != messages.crend();++it)std::cout<< it->first <<" : "<< it->second <<'\n';}

可能的输出:

接受到消息(逆日期顺序): 2023-02-17 : 20 2023-02-17 : 10 2022-12-10 : 55 2022-10-22 : 40 2022-06-14 : 50 2022-02-16 : 30 2021-12-12 : 45 2021-11-23 : 60 2020-04-01 : 24 2020-04-01 : 42

[编辑]参阅

返回指向起始的逆向迭代器
(公开成员函数)[编辑]
(C++14)
返回容器或数组的逆向尾迭代器
(函数模板)[编辑]
close