2016-10-17 17:34发布
教材中有
typedef struct node{ ... }node;
请问就功能而言和以下有区别吗?
typedef struct{ ... /*相同内容*/ }node;
1 首先:在C中定义一个结构体类型时如果要用typedef:typedef struct Student{ int no; char name[12];}Stu,student;于是在声明变量的时候就可:Stu stu1;或者:student stu2;(Stu 和student 同时为Student的别名)如果没有typedef即:struct Student{ int no; char name[12];}Stu;就必须用struct Student stu1;或者struct Stu stu1;来声明另外这里也可以不写Student(于是也不能struct Student stu1;了)typedef struct{ int no; char name[12];}Stu;
2其次:在c++中如果用typedef的话,又会造成区别:struct Student{ int no; char name[12];}stu1;//stu1是一个变量
具体区别在于: 若struct node{ }这样来定义结构体的话。在定义 node 的结构体变量时,需要这样写:struct node n;若用typedef,可以这样写:typedef struct node{}NODE; 。在申请变量时就可以这样写:NODE n;其实就相当于 NODE 是node 的别名。区别就在于使用时,是否可以省去struct这个关键字。
有区别,在结构体中如果存在struct node类型的成员,那么第二种会报错
typedef是类型定义的意思。typedef struct 是为了使用这个结构体方便。
typedef struct Student2{ int no; char name[12];}stu2;//stu2是一个结构体类型,即stu2是Student2的别名使用时可以直接访问stu1.no但是stu2则必须先定义 stu2 s2;然后 s2.no=10;
网上搜索一下会有很多讲解的,总有你需要的这篇文章看着挺易懂的,你看下 结构体定义 typedef struct 用法详解和用法小结 以下是文章的正文:
最多设置5个标签!
付费偷看金额在0.1-10元之间
1 首先:
在C中定义一个结构体类型时如果要用typedef:
typedef struct Student
{
int no;
char name[12];
}Stu,student;
于是在声明变量的时候就可:Stu stu1;或者:student stu2;(Stu 和student 同时为Student的别名)
如果没有typedef即:
struct Student
{
int no;
char name[12];
}Stu;
就必须用struct Student stu1;或者struct Stu stu1;来声明
另外这里也可以不写Student(于是也不能struct Student stu1;了)
typedef struct
{
int no;
char name[12];
}Stu;
2其次:
在c++中如果用typedef的话,又会造成区别:
struct Student
{
int no;
char name[12];
}stu1;//stu1是一个变量
具体区别在于:
若struct node{ }这样来定义结构体的话。在定义 node 的结构体变量时,需要这样写:struct node n;
若用typedef,可以这样写:typedef struct node{}NODE; 。在申请变量时就可以这样写:NODE n;其实就相当于 NODE 是node 的别名。区别就在于使用时,是否可以省去struct这个关键字。
有区别,在结构体中如果存在struct node类型的成员,那么第二种会报错
typedef是类型定义的意思。typedef struct 是为了使用这个结构体方便。
typedef struct Student2
{
int no;
char name[12];
}stu2;//stu2是一个结构体类型,即stu2是Student2的别名
使用时可以直接访问stu1.no
但是stu2则必须先定义 stu2 s2;
然后 s2.no=10;
网上搜索一下会有很多讲解的,总有你需要的
这篇文章看着挺易懂的,你看下 结构体定义 typedef struct 用法详解和用法小结
以下是文章的正文:
一周热门 更多>