C++ 向量库 - o​​perator[] 函数


描述

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处存在的元素的引用。

例外情况

该成员函数永远不会抛出异常。如果n不是有效索引,则行为未定义。

时间复杂度

常数即 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
矢量.htm