Casting a void pointer to a struct

回眸只為那壹抹淺笑 提交于 2019-12-03 16:19:11

问题


I started feeling comfortable with C and then I ran into type casting. If I have the following defined in an *.h file

struct data {
    int value;
    char *label;
};

and this in another *.h file

# define TYPE      void*

How do I cast the void pointer to the struct so that I can use a variable "TYPE val" that's passed into functions? For example, if I want to utilize the value that TYPE val points to, how do I cast it so that I can pass that value to another functions?


回答1:


(struct data*)pointer

will cast a pointer to void to a pointer to struct data.




回答2:


Typecasting void pointer to a struct can be done in following

void *vptr;
typedef struct data
{
   /* members */
}tdata;

for this we can typecast to struct lets say u want to send this vptr as structure variable to some function

then

void function (tdata *);
main ()
{
    /* here is your function which needs structure pointer 
       type casting void pointer to struct */

    function((tdata *) vptr);
}

Note: we can typecast void pointer to any type, thats the main purpose of void pointers.



来源:https://stackoverflow.com/questions/14946344/casting-a-void-pointer-to-a-struct

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!