CList::GetTail
获取表示此的尾元素的列表 CObject 指针。
TYPE& GetTail( );
const TYPE& GetTail() const;
参数
- 类型
指定元素的类型模板参数列表。
返回值
为 GetHead参见返回值声明。
备注
您必须确保列表在调用 GetTail之前不为null。 如果列表为空,则选件Microsoft基础类库的调试版本断言。 使用 IsEmpty 验证列表包含元素。
示例
// Define myList.
CList<CString,CString&> myList;
// Add an element to the end of the list.
myList.AddTail(CString(_T("ABC")));
// Verify the element was added to the end of the list.
ASSERT(CString(_T("ABC")) == myList.GetTail());
要求
Header: afxtempl.h