CAtlList::RemoveTail

调用此方法会移除该元素在列表尾。

E RemoveTail( );

返回值

返回元素在列表尾。

备注

尾元素从列表中删除,并且,内存被释放。 元素的副本返回。 如果列表为空,在调试版本中,断言失败将发生。

示例

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

要求

Header: atlcoll.h

请参见

参考

CAtlList选件类

CAtlList::RemoveTailNoReturn

CAtlList::RemoveHead

CAtlList::RemoveHeadNoReturn