C++ Vector 库 - operator[] 函数
描述
C++ 函数 std::vector::operator[] 返回对位于 n 处的元素的引用。
声明
以下是 std::vector::operator[] 函数形式 std::vector 头的声明。
C++98
reference operator[] (size_type n); const_reference operator[] (size_type n) const;
参数
n − 元素在容器中的位置。
返回值
返回对位于 n 处的元素的引用。
异常
This member funtion never throws exception. 如果 n 不是有效索引,则行为 undefined。
时间复杂度
常数,即 O(1)
示例
以下示例显示了 std::vector::operator[] 函数的用法。
#include <iostream> #include <vector> using namespace std; int main(void) { vector<int> v = {1, 2, 3, 4, 5}; for (int i = 0; i < v.size(); ++i) cout << v[i] << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
1 2 3 4 5