unsigned char ch = 'a';
pfo->Set(ch);//
void CInfo::Set(unsigned char c)
{
m_a = c;
}为什么我在set这个函数中看不到m_a的值等于'a' ?
为什么?