Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 WCP 1252 编码的头文件中有一个字符串:
#define MY_STR "This string has some fancy characters like ©"
如何将其读入std::tstring使用喜欢 UTF-8(特别是在 Android 上运行)的编译器和运行时环境?
std::tstring
_T(MY_STR)不起作用。循环遍历字符并一次添加一个是可行的,但是有更清洁的解决方案吗?
_T(MY_STR)
我最终使用预处理器#ifdef 来根据平台初始化字符串,并且每个字符串文字都根据该平台的首选编码进行编码。