CList::RemoveTail
从列表尾移除元素并返回指向它。
TYPE RemoveTail( );
参数
- 类型
指定元素的类型模板参数列表。
返回值
在列表尾的元素。
备注
您必须确保列表在调用 RemoveTail之前不为null。 如果列表为空,则选件Microsoft基础类库的调试版本断言。 使用 IsEmpty 验证列表包含元素。
示例
// Define myList.
CList<CString,CString&> myList;
// Add two elements to the list.
myList.AddTail(CString(_T("ABC")));
myList.AddTail(CString(_T("123")));
// Remove the tail element and verify the list.
// NOTE: once the tail is removed, the number of
// elements in the list will be one.
CString strTail = myList.RemoveTail();
ASSERT((CString(_T("123")) == strTail) && (myList.GetCount() == 1) &&
(CString(_T("ABC")) == myList.GetTail()));
要求
Header: afxtempl.h