typedef

来源:互联网 发布:淘宝虚拟物品不给退款 编辑:程序博客网 时间:2024/05/17 01:38

定义新的类型名来代替已有的类型名

typedef 原类型名  新类型名;

typedef int Countype 

Countype m 等价于int m

typedef struct

{

         intnum;

         char*name;

         charsex[2];

         intage;

         floatscore;

}StudentType;用新定义的类型名StudentType代替上面的结构类型

StudentType person;

StudentType *pStudent;

此时如下定义时错误的

struct StudentType person;

typedef定义数组

typedef int ArrayType[4] ;

然后再用ArrayType去定义数组变量

Arraytype a,b,c,d;

typedef 有利于程序的移植

原创粉丝点击