CObArray::acrescentar
Chame essa função de membro para adicionar o Sumário de outra matriz participante da matriz fornecida.
INT_PTR Append(
const CObArray& src
);
Parâmetros
- src
Fonte dos elementos a ser anexado à matriz.
Valor de retorno
O índice do primeiro elemento acrescentado.
Comentários
As matrizes devem ser do mesmo tipo.
Se necessário, Acrescentar pode alocar memória extra para acomodar os elementos acrescentados à matriz.
A tabela a seguir mostra outras funções de membro semelhantes a CObArray::Append.
Classe |
Função de membro |
---|---|
Acrescentar INT_PTR (CByteArray const & src ); |
|
Acrescentar INT_PTR (CDWordArray const & src ); |
|
Acrescentar INT_PTR (CPtrArray const & src ); |
|
Acrescentar INT_PTR (CStringArray const & src ); |
|
Acrescentar INT_PTR (CUIntArray const & src ); |
|
Acrescentar INT_PTR (CWordArray const & src ); |
Exemplo
See CObList::CObList para obter uma lista do CAge classe usada em todos os exemplos de coleção.
CObArray myArray1, myArray2;
// Add elements to the second array.
myArray2.Add(new CAge(21));
myArray2.Add(new CAge(42));
// Add elements to the first array and also append the second array.
myArray1.Add(new CAge(3));
myArray1.Append(myArray2);
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << _T("myArray1: ") << &myArray1 << _T("\n");
afxDump << _T("myArray2: ") << &myArray2 << _T("\n");
#endif
Requisitos
Cabeçalho: afxcoll.h