CList::AddHead
Ajoute un nouvel élément ou liste d'éléments au début de cette liste.
POSITION AddHead(
ARG_TYPE newElement
);
void AddHead(
CList* pNewList
);
Paramètres
ARG_TYPE
Paramètre de modèle spécifiant le type d'élément de liste (peut être une référence).newElement
Nouvel élément.pNewList
Un pointeur vers une autre liste d' CList . Les éléments de pNewList seront ajoutés à cette liste.
Valeur de retour
La première version retourne la valeur de position de l'élément récemment insérée.
Notes
La liste peut être vide avant l'exécution.
Exemple
// 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);
Configuration requise
Header: afxtempl.h