Partilhar via


CAtlList::AddHead

telefonar Esse método para adicionar um elemento para o topo da lista.

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

Parâmetros

  • element
    O novo elemento.

Valor de retorno

Retorna a posição do elemento recém-adicionado.

Comentários

Se a primeira versão for usada, um elemento vazio é criado usando o construtor padrão, em vez de seu construtor de cópia.

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 CAtlList

CAtlList::AddHeadList

CAtlList::AddTail

Outros recursos

CAtlList membros