CAtlList::AddHeadList

调用此方法将现有列表到列表的开头。

void AddHeadList(
   const CAtlList< E, ETraits >* plNew 
);

参数

  • plNew
    要添加的列表。

备注

列出指向由 plNew 在现有的开头插入列表。 如果 plNew 使用NULL,相等在调试版本中,断言失败将发生。

示例

// Define two lists of integers
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.AddHeadList(&myList1);

// The second list now contains:
// 1, 2, 3, 4   

要求

Header: atlcoll.h

请参见

参考

CAtlList选件类

CAtlList::AddHead

CAtlList::AddTailList