Possible Duplicate:
Typedef pointers a good idea?
我对以下内容感到困惑:
typedef struct body *headerptr;
现在,当我用headptr类型创建指向结构体的东西时,创建一个新的headerptr将如下所示(我不确定我做的是否正确):
headerptr newHeadptr;
假设这是一个指向结构体的指针,对吗?
最佳答案
对。headerptr
现在相当于struct body*
。
Possible Duplicate:
Typedef pointers a good idea?
我对以下内容感到困惑:
typedef struct body *headerptr;
headerptr newHeadptr;
最佳答案
对。headerptr
现在相当于struct body*
。