显示QMessageBox提示有多个参数(Display QMessageBox with mult

2019-10-23 00:23发布

我使用Qt框架,我用它有点生疏。

我有两个将QString firstlast

我想在显示他们QMessageBox ,但不知道如何将多个参数。

这是我必须把它与参数的代码:

QMessageBox::information(0, "Full Name", QString("%1 %2").arg(first));

我如何得到其他参数( last )包括在输出?

Answer 1:

所有ARG()的回归为QString所以下面应该工作:

QMessageBox::information(0, "Full Name", QString("%1 %2").arg(first).arg(last));

欲了解更多信息,可以查看文档在这里 。



Answer 2:

是应该做这样的事情:

QMessageBox::information(0, "Full Name", QString("%1 %2").arg(first, last));


文章来源: Display QMessageBox with multiple arguments