vector::operator[]
指定した位置における vector 要素への参照を返します。
reference operator[](
size_type Pos
);
const_reference operator[](
size_typePos
) const;
パラメーター
パラメーター |
説明 |
Pos |
vector 要素の位置。 |
戻り値
指定された位置がコンテナーのサイズ以上の場合、結果は未定義になります。
解説
operator[] の戻り値が const_reference に割り当てられている場合、vector オブジェクトを変更することはできません。 operator[] の戻り値が参照に割り当てられている場合、vector オブジェクトを変更できます。
_SECURE_SCL 1 (_ITERATOR_DEBUG_LEVEL によって制御される) を指定してコンパイルした場合、vector の境界の外にある要素にアクセスしようとするとランタイム エラーが発生します。詳細については、「チェックを行う反復子」を参照してください。
使用例
// vector_op_ref.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
v1.push_back( 10 );
v1.push_back( 20 );
int& i = v1[1];
cout << "The second integer of v1 is " << i << endl;
}
出力
The second integer of v1 is 20
必要条件
ヘッダー: <vector>
名前空間: std