CList::GetHeadPosition
获取此列表中的元素头的位置。
POSITION GetHeadPosition( ) const;
返回值
可以为迭代或对象指针检索使用的 POSITION 值; NULL,如果列表为空。
示例
// Define myList.
CList<CString,CString&> myList;
// Add an element to the front of the list.
myList.AddHead(CString(_T("ABC")));
// Verify the element at the head position
// is the one added.
POSITION pos = myList.GetHeadPosition();
ASSERT(CString(_T("ABC")) == myList.GetAt(pos));
要求
Header: afxtempl.h