다음을 통해 공유


CMap::PGetFirstAssoc

맵 개체의 첫 번째 항목을 반환합니다.

const CPair* PGetFirstAssoc( ) const; 
CPair* PGetFirstAssoc( );

반환 값

지도 대 한 포인터입니다. 참조 CMap::CPair.지도 항목이 있으면 값인 NULL.

설명

Map 개체의 첫 번째 요소에 대 한 포인터를 반환 하려면이 함수를 호출 합니다.

예제

typedef CMap<int, int, CPoint, CPoint> CMyMap;
CMyMap myMap;

myMap.InitHashTable(257);

// Add 10 elements to the map.
for (int i = 0; i <= 10; i++)
   myMap.SetAt(i, CPoint(i, i));

// Print the element value with even key values.
int nKey = 0;
CPoint pt;
CMyMap::CPair* pCurVal;

pCurVal = myMap.PGetFirstAssoc();
while (pCurVal != NULL)
{
   if ((nKey%2) == 0)
   {
      _tprintf_s(_T("Current key value at %d: %d,%d\n"),
         pCurVal->key, pCurVal->value.x, pCurVal->value.y);
   }
   pCurVal = myMap.PGetNextAssoc(pCurVal);
   nKey++;
}

요구 사항

헤더: afxtempl.h

참고 항목

참조

클래스 CMap

계층 구조 차트

CMap::PGetNextAssoc

CMap::PLookup