1 回答
TA贡献1856条经验 获得超11个赞
之所以出现这个问题,是因为:CMap m_mapTest; 这样的写法表示Key的比较方式是按照地址的方式来查找,
即你set进去的地址是多少,找的key的地址就应该多少。
如果要以内容比较的方式(即const char* 指向的字符串),用楼上说的CString作为Key的定义去做。
以下的代码的ptest_key是同一地址,并且改了Set函数,直接将改地址存放作为Key,则可以找到的:
#include "stdafx.h"
#include
class CMyClass
{
public:
CMyClass() {}
~CMyClass() {}
void Set(char * pname, int n); int Get(const char* pname); CMap<const char*, const char*, int, int> m_mapTest;
};
void CMyClass::Set(char * pname, int n)
{
char* pName = new char[20]{ 0 };
strcpy_s(pName, 20, pname);
//m_mapTest.SetAt(pName, n);
m_mapTest.SetAt(pname, n);
}
int CMyClass::Get(const char* pname)
{
POSITION pos = m_mapTest.GetStartPosition();
const char* pKey = NULL;
while (pos)
{
int n = 0;
m_mapTest.GetNextAssoc(pos, pKey, n);
if (strcmp(pKey, pname) == 0)
break;
}
int n = 0; if (m_mapTest.Lookup(pKey, n)) {// 这里 可以进来,如果要这样才能查找到对应的value 我还用 CMap 干嘛。。。 int x = n; } if (m_mapTest.Lookup(pname, n)) {// 这里进不来 int x = n; } return n;
}
int main()
{
char * ptest_key = "我是谁?";
CMyClass c;
c.Set(ptest_key, 1);
c.Get(ptest_key);
return 0;
}
- 1 回答
- 0 关注
- 1230 浏览
添加回答
举报