C++ 怎么给一个函数创建一个进程 在主程序里运行

2024-12-26 12:44:39
推荐回答(3个)
回答1:

进程?线程??
进程就用system函数之类的。
线程,在windows中用createthread之类的,看看msdn文档就可以
pthread也可以创建线程。

回答2:

给个例子你
#include
using namespace std;
int max(int,int);
int max(int,int,int);
int main(){
cout< cout< return 0;
}
int max(int a,int b){
return a>b?a:b;}
int max(int a,int b,int c){
int t;
t=max(a,b);
return max(t,c);
}

回答3:

找window的API看看
进程,线程的创建,运行之类的都有