Condividi tramite


CAtlList::AddHead

Chiamare questo metodo per aggiungere un elemento all'inizio dell'elenco.

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

Parametri

  • element
    Nuovo elemento.

Valore restituito

Restituisce la posizione dell'elemento appena aggiunto.

Note

Se la prima versione utilizzata, un elemento vuoto viene creato utilizzando il costruttore predefinito, anziché il relativo costruttore di copia.

Esempio

// 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);   

Requisiti

Header: atlcoll.h

Vedere anche

Riferimenti

Classe di CAtlList

CAtlList::AddHeadList

CAtlList::AddTail