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