Qt:杀死当前进程?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我的 win/mac/linux 代码,但不能移植到其他操作系统。
Here's my code for win/mac/linux, though not portable for other OSes.
只需直接调用 TerminateProcess,或者如果您想要独立于平台的东西: exit()
Just call TerminateProcess directly, or if you want something platform independant: exit()