有关于Visual C++的初级问题: 1. _ 是什么意思?如:经常看到 _T ,这是什么意思?
2. //{{ //}} 是什么意思? 3. m_ 是什么意思? 4. &str 这里的 & 是什么意思?还是位与的意思吗?好象解释不通. & 应该是The address-of operator 操作数地址,但具体如何用呢? 如 // Example of the address-of operator int *pPtr; int nArray[20]; pPtr = &nArray[2]; 这段代码是什么意思?