C、C++、MFC中各类数据类型的转化(持续更新中)
在平常编程中经常遇到需要各种数据类型之间的转化,先做一个持续的归纳1. CString转换为*charCString str=_T("Hello World!");char *outchar=new char[str.GetLength()];outchar=(char*)(LPCTSTR)str;2. CString转化为StringCString str=