- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[C/C++] CMap 사용 예제 본문
원본 : http://blog.daum.net/aswip/6957183
#include "stdafx.h"
#include <afxtempl.h>
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
int nValue = 0;
CString strKey;
POSITION pos = NULL;
CMap<CString, LPCSTR, int, int> m;
/* 1. add key and value */
m.SetAt("AAA", 111);
m.SetAt("ABC", 123);
/* 2. lookup key 'AAA' */
if ( m.Lookup("AAA", nValue) )
printf("find 'AAA' = %d\n", nValue);
else
printf("no such key\n");
/* 3. replace key and value */
m.SetAt("AAA", 333);
if ( m.Lookup("AAA", nValue) )
printf("find 'AAA' = %d\n", nValue);
else
printf("no such key\n");
/* 4. iterate map */
pos = m.GetStartPosition();
while ( pos != NULL )
{
m.GetNextAssoc(pos, strKey, nValue);
printf("%s = %d\n", strKey.operator LPCTSTR(), nValue);
}
/* 5. remove 'AAA' key */
m.RemoveKey("AAA");
/* 6. iterate map after removing 'AAA' key */
pos = m.GetStartPosition();
while ( pos != NULL )
{
m.GetNextAssoc(pos, strKey, nValue);
printf("%s = %d\n", strKey.operator LPCTSTR(), nValue);
}
/* 7. print map count */
printf("a saved number of key in map is %d\n", m.GetCount());
/* 8. remove all existing key pair */
m.RemoveAll();
printf("a saved number of key in map is %d\n", m.GetCount());
return 0;
}
[출처] http://blog.naver.com/mllmaster?Redirect=Log&logNo=130048724359
'★─Programing > ☆─C | C++' 카테고리의 다른 글
[C/C++] Visual Studio 2005 Warnning Deprecated Function (0) | 2011.11.01 |
---|---|
[C/C++] C 언어 레퍼런스 - sscanf 함수 (0) | 2011.11.01 |
[C/C++] scanf %n과 sscanf (0) | 2011.05.23 |
[C/C++] 실수를 실수로 반올림 함수, 자릿수 지정; Round to Double Function (0) | 2010.03.02 |
[C/C++] 클래스에서 사용되는 static 멤버 변수 및 함수 (0) | 2010.01.05 |