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

对struct typedef *的认识

时间:2019-10-08 21:49:07      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:指针   pre   code   等价   color   class   应该   type   span   

typedef struct node {
………
}NODE,*PNODE;

应该等价于

typedef struct node NODE;//struct node = NODE,eg:struct node n; <==> NODE n;其中n为node型非指针变量
typedef struct node* PNODE//struct node* = PNODE,eg:struct node* a; <==>  PNODE a;其中a为node型指针变量

其中PNODE是指向NODE的指针类型.

对struct typedef *的认识

标签:指针   pre   code   等价   color   class   应该   type   span   

原文地址:https://www.cnblogs.com/Stephen-Qin/p/11638040.html

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