CArray::acrescentar
telefonar Essa função de membro para adicionar o Sumário de um array para o participante do outro.
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
As matrizes devem ser do mesmo tipo.
Se necessário, Acrescentar pode alocar memória extra para acomodar os elementos acrescentados à 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