CArray::Append
Chamar essa função de membro para adicionar o conteúdo de uma matriz ao final da outra.
INT_PTR Append(
const CArray& src
);
Parâmetros
- src
Fonte dos elementos a ser anexado a uma matriz.
Valor de retorno
O índice do primeiro elemento acrescentado.
Comentários
Matrizes devem ser do mesmo tipo.
Se necessário, Acrescentar pode alocar memória adicional para acomodar os elementos acrescentado a matriz.
Exemplo
CArray<CPoint,CPoint> myArray1, myArray2;
// Add elements to the second array.
myArray2.Add(CPoint(11, 22));
myArray2.Add(CPoint(12, 42));
// Add elements to the first array and also append the second array.
myArray1.Add(CPoint(1, 2));
myArray1.Append(myArray2);
Requisitos
Cabeçalho: afxtempl.h