C++ Vector 库 - at() 函数
描述
C++ 函数 std::vector::at() 返回对向量中位置 n 处元素的引用。
声明
以下是 std::vector::at() 函数形式 std::vector 头的声明。
C++98
reference at (size_type n); const_reference at (size_type n) const;
参数
n − 元素在容器中的位置。
返回值
如果 n 是有效的向量索引,则从指定位置返回一个元素。
如果向量对象是常量,则方法返回常量引用,否则返回非常量引用。
异常
如果 n 无效索引 out_of_bound 抛出异常。
时间复杂度
常数,即 O(1)
示例
下面的例子展示了 std::vector::at() 函数的用法。
#include <iostream> #include <vector> using namespace std; int main(void) { auto il = {1, 2, 3, 4, 5}; vector<int> v(il); for (int i = 0; i < v.size(); ++i) cout << v.at(i) << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
1 2 3 4 5