Namespaces
Variants

std::array<T,N>:: end, std::array<T,N>:: cend

From cppreference.net

iterator end ( ) noexcept ;
(1) (C++11以降)
(constexpr since C++17)
const_iterator end ( ) const noexcept ;
(2) (C++11以降)
(constexpr since C++17)
const_iterator cend ( ) const noexcept ;
(3) (C++11以降)
(constexpr since C++17)

* this の最後の要素の次を指すイテレータを返します。

この返されたイテレータはセンチネルとしてのみ機能します。これが デリファレンス可能 であることは保証されません。

range-begin-end.svg

目次

戻り値

最後の要素の次のイテレータ。

計算量

定数。

#include <algorithm>
#include <array>
#include <iomanip>
#include <iostream>
int main()
{
    std::cout << std::boolalpha;
    std::array<int, 0> empty;
    std::cout << "1) "
              << (empty.begin() == empty.end()) << ' '     // true
              << (empty.cbegin() == empty.cend()) << '\n'; // true
    // *(empty.begin()) = 42; // => 実行時未定義動作
    std::array<int, 4> numbers{5, 2, 3, 4};
    std::cout << "2) "
              << (numbers.begin() == numbers.end()) << ' '    // false
              << (numbers.cbegin() == numbers.cend()) << '\n' // false
              << "3) "
              << *(numbers.begin()) << ' '    // 5
              << *(numbers.cbegin()) << '\n'; // 5
    *numbers.begin() = 1;
    std::cout << "4) " << *(numbers.begin()) << '\n'; // 1
    // *(numbers.cbegin()) = 42; // コンパイル時エラー: 
                                 // 読み取り専用変数は代入不可
    // 全要素を出力
    std::cout << "5) ";
    std::for_each(numbers.cbegin(), numbers.cend(), [](int x)
    {
        std::cout << x << ' ';
    });
    std::cout << '\n';
    constexpr std::array constants{'A', 'B', 'C'};
    static_assert(constants.begin() != constants.end());   // OK
    static_assert(constants.cbegin() != constants.cend()); // OK
    static_assert(*constants.begin() == 'A');              // OK
    static_assert(*constants.cbegin() == 'A');             // OK
    // *constants.begin() = 'Z'; // コンパイル時エラー: 
                                 // 読み取り専用変数は代入不可
}

出力:

1) true true
2) false false
3) 5 5
4) 1
5) 1 2 3 4

関連項目

先頭を指すイテレータを返す
(public member function)
(C++11) (C++14)
コンテナまたは配列の終端を指すイテレータを返す
(function template)