名前空間
変種
操作

std::list<T,Allocator>::rend, std::list<T,Allocator>::crend

From cppreference.com
< cpp‎ | container‎ | list
 
 
 
 
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以降)

逆順にしたlistの最後の要素の次の要素への逆イテレータを返します。これは、通常の順序のlistの最初の要素の前の要素に対応します。この要素はプレースホルダーとして機能し、アクセスしようとすると未定義の動作が発生します。

range-rbegin-rend.svg

目次

[編集] 戻り値

最後の要素の次の要素へのリバースイテレータ。

[編集] 複雑性

定数。

注釈

libc++はC++98モードにcrend()をバックポートしています。

[編集]

#include <algorithm>
#include <iostream>
#include <numeric>
#include <string>
#include <list>
 
int main()
{
    std::list<int> nums{1, 2, 4, 8, 16};
    std::list<std::string> fruits{"orange", "apple", "raspberry"};
    std::list<char> empty;
 
    // Print list.
    std::for_each(nums.rbegin(), nums.rend(), [](const int n) { std::cout << n << ' '; });
    std::cout << '\n';
 
    // Sums all integers in the list 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 list fruits, checking if there is any.
    if (!fruits.empty())
        std::cout << "First fruit: " << *fruits.rbegin() << '\n';
 
    if (empty.rbegin() == empty.rend())
        std::cout << "list 'empty' is indeed empty.\n";
}

出力

16 8 4 2 1
Sum of nums: 31
First fruit: raspberry
list 'empty' is indeed empty.

[編集] 関連項目

先頭への逆イテレータを返す
(public メンバ関数) [編集]
(C++14)
コンテナまたは配列の逆順の終端イテレータを返す
(function template) [編集]
English 日本語 中文(简体) 中文(繁體)