本想用 char 字符串做主键。
我定义了个类成员,类型: CMap《const char ※,const char ※,int,int》
在类内一个函数里 new 的 字符串 set 进去,在另外一个 函数里 拿一个字符串去查找 就找不到了。。。
难道要拿着那个 set 进去的指针去找么 ?
我不知道想 用char 数组做主键应该怎么定义,难道CMap不支持么?
class CMyClass
{
public:
CMyClass();
~CMyClass();
void Set(char * pname, int n);
int Get(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);
}
int CMyClass::Get(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;
}