CObArray::GetSize
Retorna o tamanho da matriz.
INT_PTR GetSize( ) const;
Comentários
Desde que os índices são de base zero, o tamanho 1 é maior do que o índice maior.
A tabela a seguir mostra outras funções de membro que são semelhantes a CObArray::GetSize.
Classe |
Função de membro |
---|---|
Const de INT_PTR GetSize (;) |
|
Const de INT_PTR GetSize (;) |
|
Const de INT_PTR GetSize (;) |
|
Const de INT_PTR GetSize (;) |
|
Const de INT_PTR GetSize (;) |
|
Const de INT_PTR GetSize (;) |
Exemplo
Consulte CObList::CObList para uma listagem da classe de CAge 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