CAtlArray::GetAt
取得するメソッドをこの配列オブジェクトから単一の要素を呼び出します。
const E& GetAt(
size_t iElement
) const throw( );
E& GetAt(
size_t iElement
) throw( );
パラメーター
- iElement
返される配列要素のインデックス値。
戻り値
必要な配列要素への参照を返します。
解説
デバッグ ビルドでは、ATLASSERT は iElement が配列の要素数を超えている場合に発生します。リリース ビルドでは、無効な引数は、予期しない動作が発生する可能性があります。
使用例
// Declare an array of integers
CAtlArray<int> iMyArray;
int element;
// Add ten elements to the array
for (int i = 0; i < 10; i++)
{
iMyArray.Add(i);
}
// Use GetAt and SetAt to modify
// every element in the array
for (size_t i = 0; i < iMyArray.GetCount(); i++)
{
element = iMyArray.GetAt(i);
element *= 10;
iMyArray.SetAt(i, element);
}
必要条件
Header: atlcoll.h