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.
wchar_t最近,由于这些平台之间的大小差异,我在将 Windows 应用程序移植到 Linux 时遇到了问题。我尝试使用编译器开关,但打印这些字符时出现问题(我认为 GCCwcout认为所有字符wchar_t都是 32 位的)。
wchar_t
wcout
所以,我的问题是:有什么好方法(w)cout char16_t吗?我问是因为它不起作用,我被迫将其转换为wchar_t:
(w)cout
char16_t
cout << (wchar_t) c;
这似乎不是一个大问题,但它困扰着我。
试试这个:
#include <locale> #include <codecvt> #include <string> #include <iostream> int main() { std::wstring_convert<std::codecvt_utf8_utf16<wchar_t> > myconv; std::wstring ws(L"Your UTF-16 text"); std::string bs = myconv.to_bytes(ws); std::cout << bs << '\n'; }