CList::GetTailPosition

Obtém a posição do elemento cauda dessa lista; NULO se a lista estiver vazia.

POSITION GetTailPosition( ) 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 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

Consulte também

Referência

Classe CList

Gráfico de hierarquia

CList::GetHeadPosition

CList::GetTail

Outros recursos

CList membros