2016-10-17 17:34发布
教材中有
typedef struct node{ ... }node;
请问就功能而言和以下有区别吗?
typedef struct{ ... /*相同内容*/ }node;
typedef struct Student2{ int no; char name[12];}stu2;//stu2是一个结构体类型,即stu2是Student2的别名使用时可以直接访问stu1.no但是stu2则必须先定义 stu2 s2;然后 s2.no=10;
最多设置5个标签!
typedef struct Student2
{
int no;
char name[12];
}stu2;//stu2是一个结构体类型,即stu2是Student2的别名
使用时可以直接访问stu1.no
但是stu2则必须先定义 stu2 s2;
然后 s2.no=10;
一周热门 更多>