如何以编程方式停止进程

发布于 2024-09-25 10:35:08 字数 41 浏览 4 评论 0原文

我想问一下如何使用C++以编程方式停止进程?

谢谢。

I would like to ask how can I stop a process programmatically using C++?

Thanks.

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

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

发布评论

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

评论(4

西瑶 2024-10-02 10:35:08

这是一个依赖于平台的问题。您能指定您正在使用的平台吗?

对于 Windows,您可以使用 TerminateProcess

This is a platform dependent question. Could you specify the platform you're worknig on?

For Windows you can use TerminateProcess

你与清晨阳光 2024-10-02 10:35:08

它依赖于平台。在 Unix 上,您可以使用 kill(2)

It's platform-dependent. On Unix you'd send the process a signal with the kill(2).

意中人 2024-10-02 10:35:08

使用 exit 函数终止调用进程。如果您想终止进程而不对自动或静态存储持续时间的对象执行析构函数,您可以使用 中止函数。

Use exit function to terminate the calling process. If you want to terminate the process without executing destructors for objects of automatic or static storage duration you could use abort function.

微凉徒眸意 2024-10-02 10:35:08
#include <windows.h>
int main()
{
 system("taskkill /f /im process.exe"); 
// replace process.exe with the name of process you want to stop/kill
// /f is used to forcefully terminate the process
// /im is used for imagename or in simple word it's like wildcard
 return 0;
}

或者您可以转到 如何按名称杀死进程? (Win32 API)

#include <windows.h>
int main()
{
 system("taskkill /f /im process.exe"); 
// replace process.exe with the name of process you want to stop/kill
// /f is used to forcefully terminate the process
// /im is used for imagename or in simple word it's like wildcard
 return 0;
}

Or you can go to How to kill processes by name? (Win32 API)

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