Partilhar via


CAtlList::GetHeadPosition

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

POSITION GetHeadPosition( ) const throw( );

Valor de retorno

Retorna o valor POSITION corresponde ao elemento no topo 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.AddTail(i);
}

// Get the starting position value
POSITION myPos = myList.GetHeadPosition();

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

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

Requisitos

Cabeçalho: atlcoll.h

Consulte também

Referência

Classe CAtlList

CAtlList::GetHead

CAtlList::GetTailPosition

Outros recursos

CAtlList membros