/** typedef 表示取别名; STU代表 struct Student 类型; PSTU代表 struct Student * 类型; struct Student 仍然可以继续使用; */ typedef struct Student{ int sid; char name[10]; char gender; }* PSTU, STU;