结构体定义中引用自身结构体指针怎么理解
structA{inta;intb;A*c;}pp;结构体中有自身结构体指针的引用,要怎么理解??有没有实例,大神求指导...
struct A{
int a;
int b;
A *c;
}pp;
结构体中有自身结构体指针的引用,要怎么理解??有没有实例,大神求指导 展开
int a;
int b;
A *c;
}pp;
结构体中有自身结构体指针的引用,要怎么理解??有没有实例,大神求指导 展开
1个回答
展开全部
指针只是个4位的数值,指的是内存地址,所以在构造的时候是指占4字节的(32位下),里面具体指谁是在用的时候才定的,给你个例子关于指针的
struct node {
int data;
struct node *next;
};
int main(void)
{
struct node *head, first, second;
head = &first;
first.data = 1;
first.next = &second;
second.data = 2;
second.next = NULL;
while (head) {
printf("%d\n", head->data);
head = head->next;
}
return 0;
}
struct node {
int data;
struct node *next;
};
int main(void)
{
struct node *head, first, second;
head = &first;
first.data = 1;
first.next = &second;
second.data = 2;
second.next = NULL;
while (head) {
printf("%d\n", head->data);
head = head->next;
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询