命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | 容器‎ | 数组
 
 
 
 
iterator end() noexcept;
(1) (自 C++11)
(自 C++17 起为 constexpr)
const_iterator end() const noexcept;
(2) (自 C++11)
(自 C++17 起为 constexpr)
const_iterator cend() const noexcept;
(3) (自 C++11)
(自 C++17 起为 constexpr)

返回指向array的最后一个元素之后元素的迭代器。

此元素充当占位符;尝试访问它会导致未定义行为。

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; // => undefined behavior at run-time
 
 
    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; // compile-time error: 
                                 // read-only variable is not assignable
 
    // print out all elements
    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'; // compile-time error: 
                                 // read-only variable is not assignable
}

输出

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

[编辑] 另请参阅

返回指向开头的迭代器
(公有成员函数) [编辑]
(C++11)(C++14)
返回指向容器或数组末尾的迭代器
(函数模板) [编辑]