是否有一个字符串相当于LPTSTR?(Is there an string equivalent t

2019-10-18 12:25发布

是否有一个字符串相当于LPTSTR? 我知道字符串和wstring的的。 是否有tstring?

Answer 1:

你可以定义一个:

typedef std::basic_string<TCHAR> mystring;
...
mystring test = _T("Hello World!");


Answer 2:

另一种选择(不要求windows.h ):

#if defined(_UNICODE) || defined(UNICODE)
  typedef std::wstring ustring_t;
  typedef wchar_t uchar_t;
  #define TEXT(x) (L##x)
#else
  typedef std::string ustring_t;
  typedef char uchar_t;
  #define TEXT(x) (x)
#endif

用法:

ustring_t mystr = TEXT("hello world");


文章来源: Is there an string equivalent to LPTSTR?