CMapStringToOb::SetAt
マップ要素を挿入する主要な手段。
void SetAt(
LPCTSTR key,
CObject* newValue
);
パラメーター
key
新しい要素のキーである文字列を指定します。newValue
新しい要素の値である CObject のポインターを指定します。
解説
最初に、キーが調べられます。キーがある場合は、対応する値が変更されています; は、新しいキー値の要素が作成されます。
次の表は CMapStringToOb::SetAtに似ている他のメンバー関数を示します。
Class |
メンバー関数 |
---|---|
void SetAt( void* key, void* newValue) ; |
|
void SetAt( void* key, WORD newValue) ; |
|
void SetAt( LPCTSTR key, void* newValue) ; |
|
void SetAt( LPCTSTR key, LPCTSTR newValue) ; |
|
void SetAt( WORD key, CObject* newValue) ; |
|
void SetAt( WORD key, void* newValue) ; |
使用例
すべてのコレクションの例で使用されている CAge のクラスのリストについては、CObList::CObList を参照してください。
CMapStringToOb map;
CAge* pa;
map.SetAt(_T("Bart"), new CAge(13));
map.SetAt(_T("Lisa"), new CAge(11)); // Map contains 2
// elements.
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << _T("before Lisa's birthday: ") << &map << _T("\n");
#endif
if (map.Lookup(_T("Lisa"), (CObject *&)pa))
{ // CAge 12 pointer replaces CAge 11 pointer.
map.SetAt(_T("Lisa"), new CAge(12));
delete pa; // Must delete CAge 11 to avoid memory leak.
}
#ifdef _DEBUG
afxDump << _T("after Lisa's birthday: ") << &map << _T("\n");
#endif
このプログラムの結果は次のとおりです。:
before Lisa's birthday: A CMapStringToOb with 2 elements
[Lisa] = a CAge at $493C 11
[Bart] = a CAge at $4654 13
after Lisa's birthday: A CMapStringToOb with 2 elements
[Lisa] = a CAge at $49C0 12
[Bart] = a CAge at $4654 13
必要条件
Header: afxcoll.h