CList::AddTail

添加一个新元素或列表元素到此的尾列表。

POSITION AddTail(
   ARG_TYPE newElement 
);
void AddTail(
   CList* pNewList 
);

参数

  • ARG_TYPE
    指定列表元素的类型模板参数(可以是引用)。

  • newElement
    要添加的元素到此列表。

  • pNewList
    到另一 CList 的指针列表。在 pNewList 的组件将添加到此列表。

返回值

第一个版本返回新插入的元素的 POSITION 值。

备注

该列表可为null在操作之前。

示例

// Define myList and myList2.
CList<CString,CString&> myList;
CList<CString,CString&> myList2;

// Add elements to the end of myList and myList2.
myList.AddTail(CString(_T("A")));
myList.AddTail(CString(_T("B")));
myList2.AddTail(CString(_T("C")));
myList2.AddTail(CString(_T("D")));

// There are two versions of CList::AddTail: one adds a single
// element to the end of the list, the second adds another list
// to the end. 

// This adds the string "ABC" to the end of myList.
// myList is a list of CStrings (ie defined as CList<CString,CString&>).
myList.AddTail(CString(_T("ABC")));
ASSERT(CString(_T("ABC")) == myList.GetTail());

// This adds the elements of myList2 to the end of myList.
myList.AddTail(&myList2);

要求

Header: afxtempl.h

请参见

参考

CList选件类

层次结构图

CObList::GetTail

CObList::RemoveTail