std::rbegin, std::crbegin
来自cppreference.com
定义于头文件 <iterator>
|
||
(1) | ||
template< class C > auto rbegin( C& c ) -> decltype(c.rbegin()); |
(C++14 起) (C++17 前) |
|
template< class C > constexpr auto rbegin( C& c ) -> decltype(c.rbegin()); |
(C++17 起) | |
(1) | ||
template< class C > auto rbegin( const C& c ) -> decltype(c.rbegin()); |
(C++14 起) (C++17 前) |
|
template< class C > constexpr auto rbegin( const C& c ) -> decltype(c.rbegin()); |
(C++17 起) | |
(2) | ||
template< class T, size_t N > reverse_iterator<T*> rbegin( T (&array)[N] ); |
(C++14 起) (C++17 前) |
|
template< class T, size_t N > constexpr reverse_iterator<T*> rbegin( T (&array)[N] ); |
(C++17 起) | |
(3) | ||
template< class C > auto crbegin( const C& c ) -> decltype(std::rbegin(c)); |
(C++14 起) (C++17 前) |
|
template< class C > constexpr auto crbegin( const C& c ) -> decltype(std::rbegin(c)); |
(C++17 起) | |
返回值向给定容器 c
或数组 array
逆向起始的迭代器。
1) 返回指向容器
c
逆向起始的可能有 const 限定的迭代器。3) 返回指向容器
c
逆向起始的 const 限定的迭代器。
参数
c | - | 拥有 rbegin 方法的容器
|
array | - | 任意类型的数组 |
返回值
指向 c
或 array
逆向起始的迭代器
注意
除了包含于 <iterator>
,若包含下列任一头文件,则保证 std::rbegin
与 std::crbegin
可用: <array>
、 <deque>
、 <forward_list>
、 <list>
、 <map>
、 <regex>
、 <set>
、 <span>
(C++20 起) 、 <string>
、 <string_view>
(C++17 起) 、 <unordered_map>
、 <unordered_set>
及 <vector>
。
重载
可以为未暴露适合的 rbegin()
成员函数的类提供 rbegin
的自定义重载,使之亦能迭代。标准库已经提供了下列重载:
特化 std::rbegin (函数) |
示例
运行此代码
#include <iostream> #include <vector> #include <iterator> int main() { std::vector<int> v = { 3, 1, 4 }; auto vi = std::rbegin(v); std::cout << *vi << '\n'; int a[] = { -5, 10, 15 }; auto ai = std::rbegin(a); std::cout << *ai << '\n'; }
输出:
4 15
参阅
(C++11)(C++14) |
返回指向容器或数组起始的迭代器 (函数模板) |
(C++11)(C++14) |
返回指向容器或数组结尾的迭代器 (函数模板) |
(C++14) |
返回容器或数组的逆向尾迭代器 (函数模板) |