[Linux线程]使用pthread_create函数的arg参数-成都快上网建站

[Linux线程]使用pthread_create函数的arg参数

#include 
#include 
#include 
//线程处理函数
void *threaddeal(void *arg)
{
  printf("%d\n",*((int *)arg));  //传递线程的参数
  pthread_exit(NULL);
}

int main(int argc,char *argv[])
{
  int i;
  pthread_t threadid;
  for(i=0;i<10;i++)
  {
    if(pthread_create(&threadid,NULL,threaddeal,&i) != 0)  //将i值作为参数传递
    {
      //返回值不为0则表明创建线程失败
      printf("创建线程失败.\n");
      exit(0);    //退出
    }
  }
  pthread_exit(NULL);
  return 0;
}

网页名称:[Linux线程]使用pthread_create函数的arg参数
当前网址:http://kswjz.com/article/pdssgg.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流