printf("This machine calculated all prime numbers under %d %d times in %d
seconds\n", MAX_PRIME, NUM_OF_CORES, run_time);
我希望此输出打印在QMessageBox
文本框中。
我已经查看QMessageBox
文档并没有找到任何有用的信息。
答案 0 :(得分:2)
QMessageBox
没有任何关系,因为它没有任何业务 - 它只是在你传递它们时显示字符串。但是,QString
确实提供了使用arg
方法格式化替换占位符的数据的方法:
QMessageBox::information(parent,
QString("This machine calculated all prime numbers under %1 %2 times in %3 seconds")
.arg(MAX_PRIME)
.arg(NUM_OF_CORES)
.arg(run_time), "Message title");
答案 1 :(得分:1)
首先,您必须为QString
填写QMessageBox
。您可以使用QString的方法arg
来执行此操作。然后,您可以使用QMessageBox的静态方法information显示消息框。在您的情况下代码将是:
QMessageBox::information(nullptr/*or parent*/, "Title",
QString("This machine calculated all prime numbers under %1 %2 times in %3 seconds")
.arg(MAX_PRIME).arg(NUM_OF_CORES).arg(run_time));