CList::GetTailPosition
Obtém a posição do elemento da parte final da lista; NULO se a lista estiver vazia.
POSITION GetTailPosition( ) 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 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));
Requisitos
Cabeçalho: afxtempl.h