关于C语言结构体赋值引用问题
struct zy{
int a;
int b;
void *p;
};
struct yz
{
int x;
int y;
struct zy *q;
};
void test(struct zy *zy1)
{
struct yz *yz1 = (struct yz *)zy1->p;
// printf("%d %d \n",yz1->x,yz1->y);
// zy1->p = "hello world";
}
void main()
{
struct zy *zy2 = (struct zy *)malloc(sizeof(struct zy));
zy2->a = 10;
zy2->b = 20;
// zy2->p = "hello world";
// ..............
test(zy2);
}
请教个问题struct yz *yz1 = (struct yz *)zy1->p; 关于这个的目的和意义问题? 我理解的意思是:就是struct yz *yz1 = 开发一段空间
问题: 1.在main()函数中如果我对zy2进行操作 然后调用test(zy2);调用此函数那么在test函数中 如果获取zy2结构体信息? 求指教
2.在test()函数中 struct yz *yz1有什么变化了?
[此贴子已经被作者于2018-9-12 11:36编辑过]