CObArray::GetSize
Retorna o tamanho da matriz.
INT_PTR GetSize( ) const;
Comentários
Como os índices são baseado em zero, o dimensionar é maior do que o maior índice 1.
A tabela a seguir mostra outras funções de membro semelhantes a CObArray::GetSize.
Classe |
Função de membro |
---|---|
INT_PTR GetSize () const; |
|
INT_PTR GetSize () const; |
|
INT_PTR GetSize () const; |
|
INT_PTR GetSize () const; |
|
INT_PTR GetSize () const; |
|
INT_PTR GetSize () const; |
Exemplo
See CObList::CObList para obter uma lista do CAge classe usada em todos os exemplos de coleção.
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.GetSize(); i++)
{
CAge*& pAge = (CAge*&) myArray.ElementAt(i);
delete pAge;
pAge = new CAge(100+i);
}
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << _T("myArray: ") << &myArray << _T("\n");
#endif
Requisitos
Cabeçalho: afxcoll.h