Partilhar via


CAtlList::GetTailPosition

telefonar Esse método para obter a posição da cauda da lista.

POSITION GetTailPosition( ) const throw( );

Valor de retorno

Retorna o valor POSITION corresponde ao elemento na cauda da lista.

Comentários

Se a lista estiver vazia, o valor retornado será nulo.

Exemplo

// Define the integer list
CAtlList<int> myList;
int i;

// Populate the list
for (i = 0; i < 100; i++)
{
   myList.AddHead(i);
}

// Get the starting position value
POSITION myP = myList.GetTailPosition();

// Iterate through the entire list
i = 0;
int j;

do {
   j = myList.GetPrev(myP);
   ATLASSERT(i == j);
   i++;
} while (myP != NULL);   

Requisitos

Cabeçalho: atlcoll.h

Consulte também

Referência

Classe CAtlList

CAtlList::GetTail

CAtlList::GetHeadPosition

Outros recursos

CAtlList membros