c++中没有tstring,需要自己定义如下
#ifdef _UNICODE #define tstring wstring #else #define tstring string #endif
MFC已经有了CString,它就是所谓的”TString“
转载于:https://www.cnblogs.com/zkzk945/p/5306428.html