共用方式為


CMap::PGetFirstAssoc

傳回對應物件的第一個項目。

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

傳回值

將第一個項目的指標會對應到;請參閱 CMap::CPair。 如果對應不包含項目,這個值是 NULL

備註

呼叫這個函式會傳回指標位於對應物件的第一個項目。

範例

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++;
}

需求

Header: afxtempl.h

請參閱

參考

CMap 類別

階層架構圖

CMap::PGetNextAssoc

CMap::PLookup