Condividi tramite


CAtlList::RemoveHead

Chiamare questo metodo per eliminare l'elementoinizio dell'elenco.

E RemoveHead( );

Valore restituito

Restituisce l'elementoinizio dell'elenco.

Note

L'elemento head viene eliminato dall'elenco e la memoria liberata.Una copia dell'elemento viene restituita.Nelle build di debug, un errore di asserzione si verificherà se l'elenco è vuoto.

Esempio

// Define the integer list
CAtlList<int> myList;

// Populate the list
myList.AddTail(100);
myList.AddTail(200);
myList.AddTail(300);

// Confirm the head of the list
ATLASSERT(myList.GetHead() == 100);

// Remove the head of the list
ATLASSERT(myList.RemoveHead() == 100);

// Confirm the new head of the list
ATLASSERT(myList.GetHead() == 200);   

Requisiti

Header: atlcoll.h

Vedere anche

Riferimenti

Classe di CAtlList

CAtlList::RemoveHeadNoReturn