0

我知道在 C++ 中有一个函数

system("example.exe");

运行另一个程序,说它需要 include stdlib.h

因为我已经包含了“windows.h”,所以system()Windows 中的功能是否有等价物?

4

3 回答 3

15

CreateProcess来运行特定的可执行文件,或者ShellExecute来运行程序或使用它们的关联程序打开文档。

如果对其他平台的可移植性有任何问题,我会坚持使用系统。#include stdlib.h 不会杀了你 ;)

于 2009-09-22T22:49:07.103 回答
4

查看CreateProcess 的 MSDN 页面以获取更多信息

于 2009-09-22T22:50:01.940 回答
0

我认为您正在寻找 CreateProcess?

于 2009-09-22T22:47:19.743 回答