跳转至

typedef

typedef用来为类型起别名

给int类型起别名

typedef int i;
i a = 10;

给结构体类型起别名

typedef struct Student stu;
stu sstu;