本帖最后由 joecongmin 于 2016-9-2 22:48 编辑
1:typedef关键字用来给已有的变量定义一个别名,可用来隐藏复杂的类型申明。
如
typedef int a;
a 就为 int的一个别名,
a box等价于 int box.
typedef struct students{
char name;
int age; } stu;
以后可以,像这样定义结构体
stu student1;
2:与define的区别
define只做简单的字符替换
#define uchar unsigned char;
#define ptr uchar *
ptrs1,s2;等价于uchar * s1,s2;
此时只有s1是uchar*
|