다음을 통해 공유


CAtlList::GetHeadPosition

목록의 헤드의 위치를 가져오려면이 메서드를 호출 합니다.

POSITION GetHeadPosition( ) const throw( );

반환 값

요소 목록의 앞 부분에 해당 하는 위치 값을 반환 합니다.

설명

목록이 비어 있는 경우 반환 값에는 NULL입니다.

예제

// Define the integer list
CAtlList<int> myList;
int i;

// Populate the list
for (i = 0; i < 100; i++)
{
   myList.AddTail(i);
}

// Get the starting position value
POSITION myPos = myList.GetHeadPosition();

// Iterate through the entire list
i = 0;
int j;

do {
   j = myList.GetNext(myPos);
   ATLASSERT(i == j);
   i++;
} while (myPos != NULL);   

요구 사항

헤더: atlcoll.h

참고 항목

참조

CAtlList 클래스

CAtlList::GetHead

CAtlList::GetTailPosition