Compartir a través de


CArray::Append

Llame a esta función miembro para agregar el contenido de una matriz al final de otro.

INT_PTR Append( 
   const CArray& src  
);

Parámetros

  • src
    Origen de los elementos que se anexarán a una matriz.

Valor devuelto

El índice del primer elemento anexado.

Comentarios

Las matrices deben ser del mismo tipo.

En caso necesario, Anexar puede asignar memoria adicional para alojar los elementos anexados a la matriz.

Ejemplo

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

encabezado: afxtempl.h

Vea también

Referencia

CArray Class

Gráfico de jerarquías

CArray::Copy