当前位置: 代码迷 >> 综合 >> typedef struct和struct的区别
  详细解决方案

typedef struct和struct的区别

热度:92   发布时间:2023-11-04 06:18:00.0
typedef struct node{
} bintree,*tree;

这种就是定义了一个结构体为node,别名bintree,*tree。*tree就相当于建立了一个结构体指针,给struct node *起了一个别名tree。

struct node{
} bintree,*tree;

这种就是定义结构体node,结构体变量为bintree和结构体变量指针tree。 

 
  相关解决方案