struct和typedef struct_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > struct和typedef struct

struct和typedef struct

 2011/9/2 8:03:49  andy136566  http://andy136566.iteye.com  我要评论(0)
  • 摘要:http://www.kuqin.com/language/20090406/44443.html关键:1首先:在C中定义一个结构体类型要用typedef:typedefstructStudent{inta;}Stu;于是在声明变量的时候就可:Stustu1;如果没有typedef就必须用structStudentstu1;来声明这里的Stu实际上就是structStudent的别名。另外这里也可以不写Student(于是也不能structStudentstu1;了)typedefstruct
  • 标签:

http://www.kuqin.com/language/20090406/44443.html



关键:

1 首先:
在C中定义一个结构体类型要用typedef:
typedef struct Student
{
int a;
}Stu;
于是在声明变量的时候就可:Stu stu1;
如果没有typedef就必须用struct Student stu1;来声明
这里的Stu实际上就是struct Student的别名。
另外这里也可以不写Student(于是也不能struct Student stu1;了)
typedef struct
{
int a;
}Stu;
但在c++里很简单,直接
struct Student
{
int a;
};
于是就定义了结构体类型Student,声明变量时直接Student stu2;
===========================================
2其次:
在c++中如果用typedef的话,又会造成区别:
struct Student
{
int a;
}stu1;//stu1是一个变量
typedef struct Student2
{
int a;
}stu2;//stu2是一个结构体类型
使用时可以直接访问stu1.a
但是stu2则必须先 stu2 s2;
然后 s2.a=10;


  • 相关文章
发表评论
用户名: 匿名