[关闭]
@CrazyHenry 2018-01-23T13:13:37.000000Z 字数 676 阅读 1093

1.x C和C++里的typedef struct

ccccC++Primer


1.首先://注意在C和C++里不同

    在C中定义一个结构体类型要用typedef:

  1.   typedef struct Student
  2.   {
  3.   int a;
  4.   }Stu;

    于是在声明变量的时候就可:Stu stu1;(如果没有typedef就必须用struct Student stu1;来声明)
    这里的Stu实际上就是struct Student的别名。Stu==struct Student
    另外这里也可以不写Student(于是也不能struct Student stu1;了,必须是Stu stu1;

  1.     typedef struct
  2.     {
  3.     int a;
  4.     }Stu;

    但在c++里很简单,直接

  1.     struct Student
  2.     {
  3.     int a;
  4.     };

    于是就定义了结构体类型Student,声明变量时直接Student stu2;

2.其次:

    在c++中也可用typedef

  1.     struct Student
  2.     {
  3.     int a;
  4.     }stu1;//stu1是一个变量
  1.     typedef struct Student2
  2.     {
  3.     int a;
  4.     }stu2;//stu2是一个结构体类型=struct Student2

    使用时可以直接访问stu1.a
    但是stu2则必须先 stu2 s2;
    然后 s2.a=10;

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注