CObArray::Append
Chiamare la funzione membro per aggiungere il contenuto di un'altra matrice alla fine della matrice specificata.
INT_PTR Append(
const CObArray& src
);
Parametri
- src
Origini degli elementi da aggiungere alla matrice.
Valore restituito
Indice del primo elemento aggiunto.
Note
Le matrici devono essere dello stesso tipo.
Se necessario, Append disponga della memoria aggiuntiva per soddisfare gli elementi accodati alla matrice.
Nella tabella seguente vengono illustrate altre funzioni membro che sono simili a CObArray::Append.
Classe |
Funzione membro |
---|---|
src);diINT_PTR Append( const CByteArray& |
|
src);diINT_PTR Append( const CDWordArray& |
|
src);diINT_PTR Append( const CPtrArray& |
|
src);diINT_PTR Append( const CStringArray& |
|
src);diINT_PTR Append( const CUIntArray& |
|
src);diINT_PTR Append( const CWordArray& |
Esempio
Vedere CObList::CObList per un elenco CAge utilizzata in tutti gli esempi di raccolta.
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
Requisiti
Header: afxcoll.h