CList::AddHead
Adiciona um novo elemento ou lista de elementos ao cabeçalho desta lista.
POSITION AddHead(
ARG_TYPE newElement
);
void AddHead(
CList* pNewList
);
Parâmetros
ARG_TYPE
Parâmetro do modelo especifica o tipo do elemento de lista (pode ser uma referência).newElement
O novo elemento.pNewList
Um ponteiro para outro CList lista. Os elementos em pNewList será adicionada à lista.
Valor de retorno
A primeira versão retorna o POSIÇÃO o valor do elemento recém-inserido.
Comentários
A lista pode estar vazia antes da operação.
Exemplo
// 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);
Requisitos
Cabeçalho: afxtempl.h