CAtlList::GetTailPosition
调用此方法来获取列表尾的位置。
POSITION GetTailPosition( ) const throw( );
返回值
返回位置值与元素对应于列表尾。
备注
如果列表为空,则返回的值是NULL。
示例
// 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);
要求
Header: atlcoll.h