我想问一下如何使用C ++以编程方式停止进程?
感谢。
答案 0 :(得分:4)
这是一个与平台相关的问题。你能指定你正在使用的平台吗?对于Windows,你可以使用TerminateProcess
答案 1 :(得分:3)
它依赖于平台。在Unix上,您将使用kill(2)
向该过程发送信号。
答案 2 :(得分:3)
答案 3 :(得分:0)
#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;
}