我知道在 C++ 中有一个函数
system("example.exe");
运行另一个程序,说它需要 include stdlib.h
。
因为我已经包含了“windows.h”,所以system()
Windows 中的功能是否有等价物?
我知道在 C++ 中有一个函数
system("example.exe");
运行另一个程序,说它需要 include stdlib.h
。
因为我已经包含了“windows.h”,所以system()
Windows 中的功能是否有等价物?
有CreateProcess来运行特定的可执行文件,或者ShellExecute来运行程序或使用它们的关联程序打开文档。
如果对其他平台的可移植性有任何问题,我会坚持使用系统。#include stdlib.h 不会杀了你 ;)
查看CreateProcess 的 MSDN 页面以获取更多信息
我认为您正在寻找 CreateProcess?