gpt4 book ai didi

c++ - Qt 应用程序不打印 ěčř

转载 作者:太空宇宙 更新时间:2023-11-04 13:53:37 25 4
gpt4 key购买 nike

此应用程序不打印前三个字母。

#include <QApplication>
#include <QLabel>
#include <QString>

int main(int argc, char** argv)
{
QApplication app(argc, argv);
QString a = QString::fromUtf8("ěčř1šžýáíé");
QLabel win(a);
win.show();

return app.exec();
}

最佳答案

您可以执行以下操作:

// Utf-8 (hex) for each characters in "ěčř1šžýáíé"
const char s[] = { 0xC4, 0x9B, 0xC4, 0x8D, 0xC5, 0x99, 0x31, 0xC5, 0xA1,
0xC3, 0xBD, 0xC3, 0xA1, 0xC3, 0xAD, 0xC3, 0xA9, 0x00 };
QString a = QString::fromUtf8(s);
QLabel win(a);
win.show();

关于c++ - Qt 应用程序不打印 ěčř,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22527361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com