Qt:杀死当前进程?

发布于 2024-08-07 21:59:28 字数 145 浏览 8 评论 0原文

Qt 有没有办法终止当前进程?

QProcess::kill() 似乎仅适用于其他外部进程。

Is there a way in Qt to terminate a'la TerminateProcess the current process?

QProcess::kill() seem to be only applicable to other, external processes.

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

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

发布评论

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

评论(2

淡忘如思 2024-08-14 21:59:28

这是我的 win/mac/linux 代码,但不能移植到其他操作系统。

void killMe()
{
#ifdef Q_OS_WIN
  enum { ExitCode = 0 };
  ::TerminateProcess(::GetCurrentProcess(), ExitCode);
#else
  qint64 pid = QCoreApplication::applicationPid();
  QProcess::startDetached("kill -9 " + QString::number(pid));
#endif // Q_OS_WIN
}

Here's my code for win/mac/linux, though not portable for other OSes.

void killMe()
{
#ifdef Q_OS_WIN
  enum { ExitCode = 0 };
  ::TerminateProcess(::GetCurrentProcess(), ExitCode);
#else
  qint64 pid = QCoreApplication::applicationPid();
  QProcess::startDetached("kill -9 " + QString::number(pid));
#endif // Q_OS_WIN
}
眼角的笑意。 2024-08-14 21:59:28

只需直接调用 TerminateProcess,或者如果您想要独立于平台的东西: exit()

Just call TerminateProcess directly, or if you want something platform independant: exit()

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