vector::at
返回对矢量中指定位置的元素的引用。
reference at( size_type _Pos ); const_reference at( size_type _Pos ) const;
参数
- _Pos
要在矢量中引用的元素的下标或位置编号。
返回值
对参数中的下标元素的引用。 如果 _Off 大于矢量的大小,那么 at 会引发 std::out_of_range 异常。
备注
如果将 at 的返回值赋给 const_reference,则无法修改它指向的元素。 如果将 at 的返回值赋给 reference,则可对矢量对象进行修改。
示例
// vector_at.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
using namespace std;
int main( )
{
vector <int> vec;
vec.push_back(10);
vec.push_back(20);
const int &i = vec.at(0);
int &j = vec.at(1);
cout << "The first element is " << i << endl;
cout << "The second element is " << j << endl;
}
要求
标头:<vector>
命名空间: std