我只是问自己如何重新启动我自己的 qt 应用程序?
i just asking myself how to restart my own qt application?
谁能给我举个例子?
要重新启动应用程序,请尝试:
To restart application, try:
#include <QApplication>
#include <QProcess>
...
// restart:
qApp->quit();
QProcess::startDetached(qApp->arguments()[0], qApp->arguments());
这篇关于如何重新启动我自己的 qt 应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!