CAtlList::GetHeadPosition
Chamar esse método para obter a posição de início da lista.
POSITION GetHeadPosition( ) const throw( );
Valor de retorno
Retorna o valor de POSIÇÃO que corresponde ao elemento no início da lista.
Comentários
Se a lista estiver vazia, o valor retornado é 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