CList::AddHead
加入新項目的項目或清單加入至這份清單開頭。
POSITION AddHead(
ARG_TYPE newElement
);
void AddHead(
CList* pNewList
);
參數
ARG_TYPE
指定清單項目的型別樣板參數 (可能是參考)。newElement
新項目。pNewList
另一個 CList 清單的指標。 在 pNewList 的項目都會加入至清單。
傳回值
第一個版本傳回新插入的項目的 位置 值。
備註
清單可以是空的則會在運算之前。
範例
// Declarations of the variables used in the example
CList<CString,CString&> myList;
CList<CString,CString&> myList2;
// There are two versions of CList::AddHead: one adds a single
// element to the front of the list, the second adds another list
// to the front.
// This adds the string "ABC" to the front of myList.
// myList is a list of CStrings (ie defined as CList<CString,CString&>).
myList.AddHead(CString(_T("ABC")));
// This adds the elements of myList2 to the front of myList.
myList.AddHead(&myList2);
需求
Header: afxtempl.h