CAtlList::RemoveTail

Chiamare questo metodo per eliminare l'elemento tail all'elenco.

E RemoveTail( );

Valore restituito

Restituisce l'elemento tail all'elenco.

Note

L'elemento tail 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 tail of the list
ATLASSERT(myList.GetTail() == 300);

// Remove the tail of the list
ATLASSERT(myList.RemoveTail() == 300);

// Confirm the new tail of the list
ATLASSERT(myList.GetTail() == 200);   

Requisiti

Header: atlcoll.h

Vedere anche

Riferimenti

Classe di CAtlList

CAtlList::RemoveTailNoReturn

CAtlList::RemoveHead

CAtlList::RemoveHeadNoReturn