CList::GetTailPosition
이 목록의 꼬리 요소의 위치를 가져옵니다. NULL 목록이 비어 있는 경우.
POSITION GetTailPosition( ) const;
반환 값
A 위치 반복 또는 개체 포인터 검색;을 사용할 수 있는 값 NULL 목록이 비어 있는 경우.
예제
// Define myList.
CList<CString,CString&> myList;
// Add an element to the end of the list.
myList.AddTail(CString(_T("ABC")));
// Verify the element at the end position
// is the one added.
POSITION pos = myList.GetTailPosition();
ASSERT(CString(_T("ABC")) == myList.GetAt(pos));
요구 사항
헤더: afxtempl.h