CList::GetTailPosition
Ottiene la posizione dell'elemento tail di questo elenco, NULL se l'elenco è vuoto.
POSITION GetTailPosition( ) 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 end of the list.
myList.AddTail(CString(_T("ABC")));
// Verify the element at the end position
// is the one added.
POSITION pos = myList.GetTailPosition();
ASSERT(CString(_T("ABC")) == myList.GetAt(pos));
Requisiti
Header: afxtempl.h