CObArray::GetCount
Restituisce il numero di elementi di matrice.
INT_PTR GetCount( ) const;
Valore restituito
Il numero di elementi nella matrice.
Note
Chiamare questo metodo per recuperare il numero di elementi nella matrice.Poiché gli indici sono a base zero, la dimensione è maggiore di 1 più grande indice.
Nella tabella seguente vengono illustrate altre funzioni membro che sono simili a CObArray::GetCount.
Classe |
Funzione membro |
---|---|
Const di INT_PTR GetCount ( ); |
|
Const di INT_PTR GetCount ( ); |
|
Const di INT_PTR GetCount ( ); |
|
Const di INT_PTR GetCount ( ); |
|
Const di INT_PTR GetCount ( ); |
|
Const di INT_PTR GetCount ( ); |
Esempio
Vedere CObList::CObList per un elenco CAge utilizzata in tutti gli esempi di raccolta.
CObArray myArray;
// Add elements to the array.
for (int i = 0; i < 10; i++)
myArray.Add(new CAge(i));
// Add 100 to all the elements of the array.
for (int i = 0; i < myArray.GetCount(); i++)
{
CAge*& pAge = (CAge*&) myArray.ElementAt(i);
delete pAge;
pAge = new CAge(100 + i);
}
Requisiti
Header: afxcoll.h