MFC中的CMap类使用

简介:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <afxtempl.h>  
   
CMap<CString, LPCTSTR ,CString, LPCTSTR >my_Map;  
   
CString strKey   = _T( "" );  
CString strValue = _T( "" );  
   
my_Map.SetAt( "1" , "hello" ); //添加元素  
   
CString pLook;  
my_Map.Lookup( "1" ,pLook); //查找元素  
   
ShowMessage(pLook.GetBuffer(pLook.GetLength()));  
   
int  c = my_Map.GetCount();  
   
my_Map.RemoveAll(); //删除所有元素  
   
bool  re = my_Map.RemoveKey( "1" ); //删除其中一个元素  
   
c = my_Map.GetCount(); //获取元素个数















本文转自Chinayu201451CTO博客,原文链接:http://blog.51cto.com/9233403/1970604  ,如需转载请自行联系原作者



相关文章
|
程序员 Windows
08 MFC - MFC框架中一些重要的函数
08 MFC - MFC框架中一些重要的函数
62 0
|
存储 API 数据库
【MFC】MFC基础篇(1)
【MFC】MFC基础篇(1)
【MFC】MFC基础篇(1)
MFC CFileFind类用法总结
MFC CFileFind类用法总结
419 0
|
IDE 开发工具 C语言
|
存储 索引