std::deque<T,Allocator>::rend, std::deque<T,Allocator>::crend
From cppreference.com
| reverse_iterator rend(); |
(1) | (C++11 以降 noexcept) |
| const_reverse_iterator rend() const; |
(2) | (C++11 以降 noexcept) |
| const_reverse_iterator crend() const noexcept; |
(3) | (C++11以降) |
逆順にされたdequeの最後の要素の次の要素へのリバースイテレータを返します。これは、順方向のdequeの最初の要素の前の要素に対応します。この要素はプレースホルダーとして機能し、アクセスしようとすると未定義の動作を引き起こします。
目次 |
[編集] 戻り値
最後の要素の次の要素へのリバースイテレータ。
[編集] 複雑性
定数。
注釈
libc++はC++98モードにcrend()をバックポートしています。
[編集] 例
このコードを実行
#include <algorithm> #include <iostream> #include <numeric> #include <string> #include <deque> int main() { std::deque<int> nums{1, 2, 4, 8, 16}; std::deque<std::string> fruits{"orange", "apple", "raspberry"}; std::deque<char> empty; // Print deque. std::for_each(nums.rbegin(), nums.rend(), [](const int n) { std::cout << n << ' '; }); std::cout << '\n'; // Sums all integers in the deque nums (if any), printing only the result. std::cout << "Sum of nums: " << std::accumulate(nums.rbegin(), nums.rend(), 0) << '\n'; // Prints the first fruit in the deque fruits, checking if there is any. if (!fruits.empty()) std::cout << "First fruit: " << *fruits.rbegin() << '\n'; if (empty.rbegin() == empty.rend()) std::cout << "deque 'empty' is indeed empty.\n"; }
出力
16 8 4 2 1 Sum of nums: 31 First fruit: raspberry deque 'empty' is indeed empty.
[編集] 関連項目
| (C++11) |
先頭への逆イテレータを返す (public メンバ関数) |
| (C++14) |
コンテナまたは配列の逆順の終端イテレータを返す (function template) |