CString str = "ABC";为什么从CString转变到char*
不能char* aa = (char*)str; 
而必须是char* aa = (LPSTR)(LPCTSTR)str;