13

wchar_t最近,由于这些平台之间的大小差异,我在将 Windows 应用程序移植到 Linux 时遇到了问题。我尝试使用编译器开关,但打印这些字符时出现问题(我认为 GCCwcout认为所有字符wchar_t都是 32 位的)。

所以,我的问题是:有什么好方法(w)cout char16_t吗?我问是因为它不起作用,我被迫将其转换为wchar_t

cout << (wchar_t) c;

这似乎不是一个大问题,但它困扰着我。

4

1 回答 1

3

试试这个:

#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';
}
于 2011-04-11T02:31:23.027 回答