为了确定 C++ 是否适合我的项目,我想测试 UTF-8 功能。根据参考资料,我建立了这个例子:
#include <string>
#include <iostream>
using namespace std;
int main() {
wstring str;
while(getline(wcin, str)) {
wcout << str << endl;
if(str.empty()) break;
}
return 0;
}
但是当我输入一个 UTF-8 字符时,它行为不端:
$ > ./utf8
Hello
Hello
für
f
$ >
它不仅不打印ü
,而且立即退出。gdb
告诉我没有崩溃,而是正常退出,但我觉得很难相信。