CList::GetHeadPosition
이 목록의 head 요소의 위치를 가져옵니다.
POSITION GetHeadPosition( ) const;
반환 값
A 위치 반복 또는 개체 포인터 검색;을 사용할 수 있는 값 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));
요구 사항
헤더: afxtempl.h