CMap::SetAt
主要方式將項目插入至對應。
void SetAt(
ARG_KEY key,
ARG_VALUE newValue
);
參數
ARG_KEY
指定 key 參數型別樣板參數。key
指定新項目的索引鍵。ARG_VALUE
指定 newValue 參數型別樣板參數。newValue
指定新項目值。
備註
首先,索引鍵查閱。 如果找到索引鍵,則會變更對應的值,則為新的索引鍵/值組來建立。
範例
CMap<int, int, CPoint, CPoint> myMap;
// Add 10 elements to the map.
for (int i = 0; i < 10; i++)
myMap.SetAt(i, CPoint(i, i));
// Remove the elements with even key values.
POSITION pos = myMap.GetStartPosition();
int nKey;
CPoint pt;
while (pos != NULL)
{
myMap.GetNextAssoc(pos, nKey, pt);
if ((nKey % 2) == 0)
myMap.RemoveKey(nKey);
}
// Print the element values.
pos = myMap.GetStartPosition();
while (pos != NULL)
{
myMap.GetNextAssoc(pos, nKey, pt);
_tprintf_s(_T("Current key value at %d: %d,%d\n"),
nKey, pt.x, pt.y);
}
需求
Header: afxtempl.h