描述
C++ 函数std::array::cend()返回一个指向数组的 past-end 元素的常量迭代器。此方法返回的迭代器可用于迭代数组内容,但不能用于修改数组内容,即使数组对象本身不是常量。
声明
以下是 std::array::cend() 函数形式 std::array 标头的声明。
const_iterator cend() const noexcept;
参数
空
返回值
返回指向数组的 past-end 元素的常量迭代器。这是一个 place-holder 位置,不存储任何实际数据。因此,取消引用 this 将导致未定义的行为。
异常
此成员函数从不抛出异常。
时间复杂度
常数,即 O(1)
示例
让我们尝试修改 const 迭代器指向的值。
#include <iostream>
#include <array>
using namespace std;
int main(void) {
array<int, 5> arr = {10, 20, 30, 40, 50};
auto it = arr.cend(); /* iterator pointing to past−the−end of array */
/* ERROR:attempt to modification will cause compilation error */
*it = 5;
return 0;
}
上面的程序产生以下错误信息。
cend.cpp:In function ‘int main()’: cend.cpp:12:8:error:assignment of read-only location ‘* it’ *it = 5; ^
相关用法
- C++ Array cbegin()用法及代码示例
- C++ Array crend()用法及代码示例
- C++ Array crbegin()用法及代码示例
- C++ Array swap()用法及代码示例
- C++ Array max_size()用法及代码示例
- C++ Array get()用法及代码示例
- C++ Array back()用法及代码示例
- C++ Array data()用法及代码示例
- C++ Array empty()用法及代码示例
- C++ Array tuple_size()用法及代码示例
- C++ Array fill()用法及代码示例
- C++ Array at()用法及代码示例
- C++ Array end()用法及代码示例
- C++ Array rbegin()用法及代码示例
- C++ Array begin()用法及代码示例
- C++ Array size()用法及代码示例
- C++ Array rend()用法及代码示例
- C++ Array front()用法及代码示例
- C++ Algorithm copy()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Array Library - cend() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。