例如struct student *insert(struct student *head) 这个结构体的struct student *insert这个在insert前面加上*号和不加有啥区别吗?
2 回答
慕容森
TA贡献1853条经验 获得超18个赞
表示子程序返回来的是结构指针。在子程序中对head进行处理后,得到新的head,返回时用: return head;}
你可以把返回的head有赋个另一个struct student 定义的结构指针,如*p:
struct student *p;
p=insert( head);
应当很好理解。一般编程时,为了准确期间,都要传指针,特别是在嵌入式编程时。
守着一只汪
TA贡献1872条经验 获得超3个赞
这个*号不在和函数连在一起的,是函数返回值的一部分struct student *insert(struct student *head)这个函数的返回值就是,struct student *
- 2 回答
- 0 关注
- 1049 浏览
添加回答
举报
0/150
提交
取消