一、typedef开头的 以typedef开头的必现要在最后加上个“别名”。有两种写法: 1 完整的写法 typedef struct MyStruct {int i; }Ms;struct MyStruct s; //或者 Ms s; s.i = 0; 2 省略前面……