CAtlList::AddHead

Chamar este método para adicionar um elemento ao início da lista.

POSITION AddHead( ); 
POSITION AddHead(
   INARGTYPE element 
);

Parâmetros

  • element
    o novo elemento.

Valor de retorno

Retorna a posição do elemento adicionado.

Comentários

Se a primeira versão é usada, um elemento vazio é criado usando o construtor padrão, em vez do construtor de impressão.

Exemplo

// Declare a list of integers
CAtlList<int> myList;

// Add some elements, each to the head of the list.
// As each new element is added, the previous head is
// pushed down the list.
myList.AddHead(42);
myList.AddHead(49);

// Confirm the value currently at the head of the list
ATLASSERT(myList.GetHead() == 49);

// Confirm the value currently at the tail of the list
ATLASSERT(myList.GetTail() == 42);   

Requisitos

Cabeçalho: atlcoll.h

Consulte também

Referência

Classe de CAtlList

CAtlList::AddHeadList

CAtlList::AddTail