cpp windows 异步执行 外部程序
2019-02-18 本文已影响0人
我是传奇lz
同步执行:
int result = system("test.exe");
异步执行: 使用windows中的start功能可以实现异步调用。
int result = system("start test.exe");
同步执行:
int result = system("test.exe");
异步执行: 使用windows中的start功能可以实现异步调用。
int result = system("start test.exe");