一般形式: typedef 原类型 新类型
1)对于基本数据类型: typedef int yuzhou--->此为别名
2)对于给数组起别名: typedef int ARRAY[5] ---->别名为ARRAY
3)对给结构体起别名: typedef struct Car{int lunzi;int speed}MYCAR;---->MYCAR为别名
4)对于给枚举起别名: typedef enum Sex{kSexMan,kSexWomen,kSexYao}ISEX;--->ISEX为别名
5) 对函数指针起别名: typedef int (*FUN)(int,int);----->FUN为别名 |
|