共用方式為


CMap::Lookup

搜尋值會對應至特定索引鍵。

BOOL Lookup(
   ARG_KEY key,
   VALUE& rValue 
) const;

參數

  • ARG_KEY
    指定 key 值型別樣板參數。

  • key
    指定識別所要搜尋之項目的索引鍵。


  • 指定要搜尋之值的型別。

  • rValue
    接收要尋找的值。

傳回值

不是零,如果找到項目,則為 0。

備註

Lookup 使用雜湊演算法快速尋找完全符合指定索引鍵相關聯的索引鍵對應項目。

範例

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

         myMap.InitHashTable(257);

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

         // Remove the elements with even key values.
         CPoint pt;
         for (int i = 0; myMap.Lookup(i, pt); i += 2)
         {
            myMap.RemoveKey(i);
         }

         ASSERT(myMap.GetSize() == 100);
         TRACE(_T("myMap with %d elements:\n"), myMap.GetCount());
           POSITION pos = myMap.GetStartPosition();
         int iKey;
         CPoint ptVal;
           while (pos != NULL)
           {
               myMap.GetNextAssoc(pos, iKey, ptVal);
               TRACE(_T("\t[%d] = (%d,%d)\n"), iKey, ptVal.x, ptVal.y);
         }

需求

Header: afxtempl.h

請參閱

參考

CMap 類別

階層架構圖

[in] CMap::operator