Tags
- postman pre-request
- Unity
- postman
- postman excel
- postman html parse
- Front-end developer
- web developer
- postman csv
- Interaction developer
- LSL_Script
- postman collection variables
- solidity
- Android/iOS Developer
- postman collection
- postman session
- MFC
- UI/UX Engineer
- emplace_back
- postman tests
- 우수한 프런트 개발자
- c#
- C++
- oracle
- 프런트엔드
- postman automations
- Intellij
- 다빈치 리졸브
- Android
- Java
- 좋은 개발자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Archives
- Today
- Total
david's daily developer note
CAtlMap Examples 본문
728x90
//선언
#include "atlcoll.h"
CAtlMap<CString , BOOL , CStringElementTraits<CString>> myCatl; //키가 문자열인 경우
CAtlMap<int , BOOL>myCatl; //키가 문자열이 아닌 모든 경우
//삽입
myCatl.SetAt(Key ,Value);
//삭제
myCatl.RemoveKey(Key);
myCatl.RemoveAll();
//검색
CAtlMap<UINT , BOOL>::CPair* pPair = myCatl.Lookup( Key ); // Key값으로 Value를 리턴(BOOL)한다.
//시작위치
POSITION pos = myCatl.GetStartPosition();
//다음위치
myCatl.GetNext(POSITION); //리턴값 : CPair *
myCatl.GetNextValue(POSITION); //리턴값 : Value
728x90
'[Develop] Native > Native' 카테고리의 다른 글
GetAsyncKeyState (0) | 2012.02.28 |
---|---|
윈도우 최소, 최대 크기 제한 (0) | 2012.02.27 |
CCmdUI 클래스 (0) | 2012.02.20 |
MFC 파일 존재 여부 확인 (0) | 2012.02.15 |
PopupMenu (0) | 2012.02.11 |