CArray::Append
呼叫此成員函式會將陣列內容至另一個的結尾。
INT_PTR Append(
const CArray& src
);
參數
- src
要附加之項目的來源至陣列。
傳回值
第一個附加的項目的索引。
備註
陣列必須是相同的型別。
如果需要, 附加 可能會配置額外的記憶體來容納項目附加至陣列。
範例
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);
需求
Header: afxtempl.h