CList::GetHeadPosition
Obtém a posição do elemento principal da lista.
POSITION GetHeadPosition( ) const;
Valor de retorno
Um valor de POSIÇÃO que pode ser usado para recuperação de iteração ou ponteiro do objeto; NULO se a lista estiver vazia.
Exemplo
// Define myList.
CList<CString,CString&> myList;
// Add an element to the front of the list.
myList.AddHead(CString(_T("ABC")));
// Verify the element at the head position
// is the one added.
POSITION pos = myList.GetHeadPosition();
ASSERT(CString(_T("ABC")) == myList.GetAt(pos));
Requisitos
Cabeçalho: afxtempl.h