码迷,mamicode.com
首页 > 其他好文 > 详细

传入的结构体指针强制转为实例化结构体*v

时间:2017-09-21 13:39:50      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:http   void   oid   www   class   参数   net   thread   struct   

struct val *v = (struct val *)arg;//传入的结构体指针强制转为实例化结构体*v
struct val{
   int num1;
      int num2;
  };
void *text3(void *arg)
{
    struct val *v = (struct val *)arg;
int num3=v—>num1;
int num4=v->num2;
printf("arg is v.num1:%d,v.num2:%d\n",num3,num4); // printf("arg is v.num1:%d,v.num2:%d\n",v->num1,v->num2); pthread_exit(NULL);
}
例子:=======>>>>【C】——如何用线程进行参数的传递;

传入的结构体指针强制转为实例化结构体*v

标签:http   void   oid   www   class   参数   net   thread   struct   

原文地址:http://www.cnblogs.com/dpf-learn/p/7567653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!