CList::GetHeadPosition
Obtiene la posición del elemento principal de esta lista.
POSITION GetHeadPosition( ) const;
Valor devuelto
Un valor de POSICIÓN que se puede utilizar para la recuperación del puntero de iteración u objeto; NULL si la lista está vacía.
Ejemplo
// 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
encabezado: afxtempl.h