提问人:Yahya Gedik 提问时间:4/27/2018 最后编辑:ZomboYahya Gedik 更新时间:10/18/2020 访问量:2575
wcout 未按预期输出
wcout does not output as desired
问:
我一直在尝试为一个项目编写一个 C++ 应用程序,但我遇到了这个问题。基本上:
class OBSClass
{
public:
wstring ClassName;
uint8_t Credit;
uint8_t Level;
OBSClass() : ClassName(), Credit(), Level() {}
OBSClass(wstring name, uint8_t credit, uint8_t hyear)
: ClassName(name), Credit(credit), Level(hyear)
{}
};
在其他一些文件中:
vector<OBSClass> AllClasses;
...
AllClasses.push_back(OBSClass(L"Bilişim Sistemleri Mühendisliğine Giriş", 3, 1));
AllClasses.push_back(OBSClass(L"İş Sağlığı ve Güvenliği", 3, 1));
AllClasses.push_back(OBSClass(L"Türk Dili 1", 2, 1));
... (rest omitted, some of entries have non-ASCII characters like 'ş' and 'İ')
我有一个函数基本上输出所有内容,问题是 wcout 没有按预期输出。AllClasses
void PrintClasses()
{
for (size_t i = 0; i < AllClasses.size(); i++)
{
wcout << "Class: " << AllClasses[i].ClassName << "\n";
}
}
输出是“Class: Bili”,仅此而已。程序甚至不尝试输出其他条目,只是挂起。我在使用 G++ 6.3.0 的 Windows 上。而且我没有使用 Windows 的 cmd,而是使用 mingw 的 bash,所以编码不会有问题(或者不是吗?有什么建议吗?
编辑:源代码编码也不是问题,只是检查了一下它是UTF8,默认为VSCode
编辑:也刚刚检查了字符串文字是否存在问题。
wstring test;
wcin >> test;
wcout << test;
输入了一些非 ASCII 字符,如“ö”和“ş”,它工作得很好。宽字符串文字有什么问题?
编辑:给你
#include <iostream>
#include <string>
#include <vector>
using namespace std;
vector<wstring> testvec;
int main()
{
testvec.push_back(L"Bilişim Sistemleri Mühendisliğine Giriş");
testvec.push_back(L"ıiÖöUuÜü");
testvec.push_back(L"☺☻♥♦♣♠•◘○");
for (size_t i = 0; i < testvec.size(); i++)
wcout << testvec[i] << "\n";
return 0;
}
使用 G++ 编译: g++ file.cc -O3
此代码仅输出 'Bili'。一定是 g++ 搞砸了二进制编码 (?),因为输入值然后输出它们不会产生任何问题。wcin
wcout
答:
以下代码对我有用,在 MSYS64 Bash 和 Windows CMD 中使用 MinGW-w2.3.0;并将源代码编码为 UTF-8:
#include <iostream>
#include <locale>
#include <string>
#include <codecvt>
int main()
{
std::ios_base::sync_with_stdio(false);
std::locale utf8( std::locale(), new std::codecvt_utf8_utf16<wchar_t> );
std::wcout.imbue(utf8);
std::wstring w(L"Bilişim Sistemleri Mühendisliğine Giriş");
std::wcout << w << '\n';
}
解释:
- Windows 控制台不支持任何类型的 16 位输出;它只有 ANSI 和部分 UTF-8 支持。因此,您需要配置将输出转换为 UTF-8。这是向后兼容性的默认值,尽管 Windows 10 1803 确实添加了一个选项将其设置为 UTF-8 (ref)。
wcout
imbue
与一个实现这个;但是,您还需要禁用,否则流甚至不使用分面,它只是服从于具有类似问题的分面。codecvt_utf8_utf16
sync_with_stdio
stdout
对于写入其他文件,我发现相同的技术适用于编写 UTF-8。要编写 UTF-16 文件,您需要使用 UTF-16 方面进行填充,请参阅此处的示例,然后手动编写 BOM。wofstream
评论:由于这些问题,许多人只是避免尝试完全使用宽 iostream。
您可以使用窄流编写 UTF-8 文件;并在代码中具有函数调用以转换为 UTF-8(如果您在内部使用);当然,您可以在内部使用 UTF-8。wstring
wstring
当然,您也可以使用窄流编写 UTF-16 文件,但不能使用 from a .operator<<
wstring
评论
codecvt_utf8
codecvt_utf8
确实已弃用,应改用。我会用它来更新答案。codecvt_utf8_utf16
如果您至少拥有 Windows 10 1903(2019 年 5 月),并且至少 Windows 终端 0.3.2142(2019 年 8 月)。然后设置Unicode:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\CodePage]
"OEMCP"="65001"
并重新启动。之后,您可以使用以下功能:
#include <iostream>
int main() {
std::string a[] = {
"Bilişim Sistemleri Mühendisliğine Giriş",
"Türk Dili 1",
"İş Sağlığı ve Güvenliği",
"ıiÖöUuÜü",
"☺☻♥♦♣♠•◘○"
};
for (auto s: a) {
std::cout << s << std::endl;
}
}
评论
main
std::wcout << L"Your string";
main
main