在Linux下用C++创建新线程

做图形界面,想用多线程做后台数据处理,只需可以创建一个新线程,执行一函数即可,下面是采用了一种C下的方法,在C++下编译总是出错,请问在C++下该怎么改voidthrea... 做图形界面,想用多线程做后台数据处理,只需可以创建一个新线程,执行一函数即可,下面是采用了一种C下的方法,在C++下编译总是出错,请问在C++下该怎么改

void thread(void)
{
printf ("The child process...\n");
}

int main(int argc, char *argv[])
{
pthread_t id;
int i,ret;
ret=pthread_create(&id,NULL,(void *)thread(),NULL);
if(ret!=0)
{
printf ("Create pthread error!\n");
exit (1);
}

}
展开
 我来答
huifeng00
2010-06-14 · TA获得超过5233个赞
知道大有可为答主
回答量:808
采纳率:0%
帮助的人:695万
展开全部
#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
void* thread(void* arg)
{
printf ("The child process...\n");
}

int main(int argc, char *argv[])
{
pthread_t id;
int i,ret;
ret=pthread_create(&id,NULL,(void *)thread,NULL);
if(ret!=0)
{
printf ("Create pthread error!\n");
exit (1);
}

}
程序如上就可以编译。
它属于linux下C编程中多线程编程的范围。
用命令
gcc -lpthread 1.c -o 1
./1
就可以出结果。
多线程编程的基础可以参考
http://hi.baidu.com/huifeng00/blog/item/ed13ddc0d6c59c170ff47715.html
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友12edd0a47
2010-06-14 · 超过53用户采纳过TA的回答
知道小有建树答主
回答量:157
采纳率:0%
帮助的人:149万
展开全部
thread的函数的返回值改成 void *
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式