CAtlList::AddTailList
呼叫這個方法會將現有的清單加入至這份清單尾端。
void AddTailList(
const CAtlList< E, ETraits >* plNew
);
參數
- plNew
要加入的清單。
備註
清單所指向的 plNew 在清單物件插入,則最後一個項目 (如果有的話)。 在 plNew 清單中的最後一個項目就會變成尾端。 如果 plNew 具有 null 值,等於在偵錯組建中,判斷提示失敗時會發生。
範例
// Define two integer lists
CAtlList<int> myList1;
CAtlList<int> myList2;
// Fill up the first list
myList1.AddTail(1);
myList1.AddTail(2);
myList1.AddTail(3);
// Add an element to the second list
myList2.AddTail(4);
// Insert the first list into the second
myList2.AddTailList(&myList1);
// The second list now contains:
// 4, 1, 2, 3
需求
Header: atlcoll.h