CArray::GetAt
Retorna o elemento de matriz no índice especificado.
TYPE& GetAt(
INT_PTR nIndex
);
const TYPE& GetAt(
INT_PTR nIndex
) const;
Parâmetros
TIPO
Parâmetro do modelo especifica o tipo de elementos da matriz.nIndex
Um índice de inteiro é maior que ou igual a 0 e menor ou igual ao valor retornado por GetUpperBound.
Valor de retorno
O elemento de matriz no momento neste índice.
Comentários
Passando um valor negativo ou um valor maior do que o valor retornado por GetUpperBound resultará em uma declaração com falha.
Exemplo
CArray<CPoint,CPoint> myArray;
CPoint pt;
// Add elements to the array.
for (int i = 0; i < 10; i++)
myArray.Add(CPoint(i, 2 * i));
// Modify all the points in the array.
for (int i = 0; i <= myArray.GetUpperBound(); i++)
{
pt = myArray.GetAt(i);
pt.x = 0;
myArray.SetAt(i, pt);
}
Requisitos
Cabeçalho: afxtempl.h