如何重新启动我自己的 qt 应用程序?

2021-12-09 00:00:00 qt4 qt c++ application-restart

我只是问自己如何重新启动我自己的 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());

相关文章