如何在c++中终止正在运行的程序



我用c++编写了一个程序,我称之为

system("C:xamppxampp-control.exe");
来运行xampp控制面板。当我在编译后运行程序时,除了我写的程序还在运行之外,它运行得很顺利。一旦XAMPP控制面板启动,我想终止该程序。我们能做些什么呢?

您可以将您的应用程序替换为使用exec调用的应用程序。

// Note: this waits for the exectued program to finish
// before the call to `system()` returns.
system("C:xamppxampp-control.exe");
// You can replace the current processes with the one you
// are starting like this.
execl("C:xamppxampp-control.exe", "xampp-control.exe");
// If this returns the applicaion failed to start.
std::cerr << "Failed to start applicationn";
exit(1);

相关内容

  • 没有找到相关文章

最新更新