CList::GetHeadPosition
Obtém a posição do elemento head desta lista.
POSITION GetHeadPosition( ) const;
Valor de retorno
A POSIÇÃO valor de que pode ser usado para recuperação de ponteiro de iteração ou 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