CAtlList::GetTailPosition
Appelez cette méthode pour obtenir la position de la fin de la liste.
POSITION GetTailPosition( ) const throw( );
Valeur de retour
Retourne la valeur de POSITION correspondant à l'élément à la fin de la liste.
Notes
Si la liste est vide, la valeur retournée est NULL.
Exemple
// Define the integer list
CAtlList<int> myList;
int i;
// Populate the list
for (i = 0; i < 100; i++)
{
myList.AddHead(i);
}
// Get the starting position value
POSITION myP = myList.GetTailPosition();
// Iterate through the entire list
i = 0;
int j;
do {
j = myList.GetPrev(myP);
ATLASSERT(i == j);
i++;
} while (myP != NULL);
Configuration requise
Header: atlcoll.h