CObArray::GetAt
Restituisce l'elemento di matrice l'indice specificato.
CObject* GetAt(
INT_PTR nIndex
) const;
Parametri
- nIndex
Un intero maggiore o uguale a 0 e minore o uguale al valore restituito da GetUpperBound.
Valore restituito
L'elemento del puntatore CObject attualmente a questo indice.
Note
[!NOTA]
Passando un valore negativo o un valore maggiore del valore restituito da GetUpperBound è un'asserzione non riuscita.
Nella tabella seguente vengono illustrate altre funzioni membro che sono simili a CObArray::GetAt.
Classe |
Funzione membro |
---|---|
BYTE GetAt( INT_PTRnIndex ) const; |
|
DWORD GetAt( INT_PTRnIndex ) const; |
|
void* GetAt( INT_PTRnIndex ) const; |
|
CString GetAt( INT_PTRnIndex ) const; |
|
UINT GetAt( INT_PTRnIndex ) const; |
|
WORD GetAt( INT_PTRnIndex ) const; |
Esempio
Vedere CObList::CObList per un elenco CAge utilizzata in tutti gli esempi di raccolta.
CObArray arr;
arr.Add(new CAge(21)); // Element 0
arr.Add(new CAge(40)); // Element 1
ASSERT(*(CAge*) arr.GetAt(0) == CAge(21));
Requisiti
Header: afxcoll.h