共用方式為


CList::AddTail

加入新項目的項目或清單加入至這份清單尾端。

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

參數

  • ARG_TYPE
    指定清單項目的型別樣板參數 (可能是參考)。

  • newElement
    要加入的項目加入至清單。

  • pNewList
    另一個 CList 清單的指標。 在 pNewList 的項目都會加入至清單。

傳回值

第一個版本傳回新插入的項目的 位置 值。

備註

清單可以是空的則會在運算之前。

範例

// 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