- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
C++ 数组库 - cbegin() 函数
描述
C++ 函数std::array::cbegin()返回一个指向数组开头的常量迭代器。该方法返回的迭代器可用于迭代容器,但不能用于修改数组内容。
宣言
以下是 std::array::cbegin() 函数形式 std::array 标头的声明。
const_iterator cbegin() const noexcept;
参数
没有任何
返回值
返回指向数组开头的常量迭代器。
例外情况
该成员函数从不抛出异常。
时间复杂度
常数即 O(1)
例子
以下示例显示了 std::array::cbegin() 函数的用法。
#include <iostream> #include <array> using namespace std; int main(void) { array<int, 5> arr = {1, 2, 3, 4, 5}; auto it = arr.cbegin(); /* iterate whole array */ while (it < arr.end()) { cout << *it << " "; ++it; } cout << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 -
1 2 3 4 5
由于该方法返回const迭代器,因此我们不能使用该迭代器来修改数组内容。任何修改数组元素的尝试都会报告编译错误。
#include <iostream> #include <array> using namespace std; int main(void) { array<int, 5> arr = {1, 2, 3, 4, 5}; auto it = arr.cbegin(); /* returns a constant iterator */ /* ERROR: attemp to modify value will report compilation error */ *it = 100; return 0; }
上述程序的编译将失败并出现以下错误消息。
cbegin.cpp: In function ‘int main()’: cbegin.cpp:12:8: error: assignment of read-only location ‘* it’ *it = 100; ^
数组.htm