C++ Array 库 - end() 函数
描述
C++ 函数 std::array::end() 返回一个迭代器,它指向数组的最后一个元素。
声明
以下是 std::array::end() 函数形式 std::array 头的声明。
iterator end() noexcept; const_iterator end() noexcept;
参数
None
返回值
返回指向数组中末尾元素的迭代器。 此元素充当占位符,从不存储实际数据,这就是为什么推迟此位置会导致未定义行为的原因。
如果数组对象是 const 限定的,则方法返回 const 迭代器,否则返回迭代器。
异常
此成员函数从不抛出异常。
时间复杂度
常数,即 O(1)
示例
以下示例显示了 std::array::end() 函数的用法。
#include <iostream> #include <array> using namespace std; int main(void) { array<int, 5> arr = {10, 20, 30, 40, 50}; /* iterator pointing at the start of array */ auto start = arr.begin(); /* iterator pointing past−the−end of array */ auto end = arr.end(); /* iterate complete array */ while (start < end) { cout << *start << " "; ++start; } cout << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
10 20 30 40 50