CList::GetHeadPosition
Ottiene la posizione dell'elemento head di questo elenco.
POSITION GetHeadPosition( ) const;
Valore restituito
Un valore di percorso che può essere utilizzato per un'iterazione o recupero il puntatore all'oggetto; NULL se l'elenco è vuoto.
Esempio
// 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));
Requisiti
Header: afxtempl.h