字符串 +变量如何?

发布于 2024-11-25 10:18:55 字数 273 浏览 0 评论 0原文

我是一个学习 Qt/C++ 的初学者 我遇到了一个错误: 我想知道如何在本例中将变量“用户名”放置在下面几行的字符串旁边。

QString username = ui->lineEdit->text();

QMessageBox msgBox;
msgBox.setText("Your username is: " VARIABLEHERE);
msgBox.exec();

那么如何排列它还是应该使用其他功能?比 msgBox.setText()

Im a beginner learning Qt/C++
and I got into an error:
I wanted to know how can I put a variable in this case "username" next to a string in the lines below.

QString username = ui->lineEdit->text();

QMessageBox msgBox;
msgBox.setText("Your username is: " VARIABLEHERE);
msgBox.exec();

So how to line it or should I use other function ? than msgBox.setText()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

遗失的美好 2024-12-02 10:18:55

好的 Qt 方法是:

msgBox.setText(QString("Your username is: %1").arg(VARIABLEHERE));

有关详细信息,请参阅 QString::arg

The nice Qt way is:

msgBox.setText(QString("Your username is: %1").arg(VARIABLEHERE));

For more information see QString::arg

凉城 2024-12-02 10:18:55

如果您需要翻译支持:

msgBox.setText(tr("Your username is: %1").arg(VARIABLEHERE));

如果您连接,那么所有语言都必须使用相同的句子语义,但是......他们不能。

If you want translation support:

msgBox.setText(tr("Your username is: %1").arg(VARIABLEHERE));

If you concatenate then all languages will have to use the same sentence semantics, and well... they can't.

此生挚爱伱 2024-12-02 10:18:55
msgBox.setText("Your username is: "+VARIABLEHERE);
msgBox.setText("Your username is: "+VARIABLEHERE);
或十年 2024-12-02 10:18:55

我认为+应该有帮助:
msgBox.setText("您的用户名是:" + 用户名);

i think + should help:
msgBox.setText("Your username is: " + username );

○愚か者の日 2024-12-02 10:18:55

有关的:
当您使用“std::cout”进行调试时,它与 QStrings 的工作方式如下:

cout << any_qstring.toUtf8().constData() << number_variable << endl;

否则编译器会告诉您“<<”是模棱两可的。

编辑:调用 toStdString 更容易

cout << myString.toStdString() << some_int << endl;

,如果您想从字符串中解析数字,请使用 QString::number(your_double);

Related:
When you debug using "std::cout" it works like this with QStrings:

cout << any_qstring.toUtf8().constData() << number_variable << endl;

Otherwise the compiler will tell you that "<<" is ambiguous.

Edit: it's even easier to call toStdString

cout << myString.toStdString() << some_int << endl;

And if you want to parse numbers from strings, use QString::number(your_double);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文