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