摘要: 1 //obj.h 2 3 #include 4 #include 5 #include 6 7 typedef struct Obj Obj; 8 9 Obj * CreateObject(int id, const char * name); 10 11 void PrintObject(Obj * obj); 12 13 int GetId(Obj * o... 阅读全文
posted @ 2018-07-30 17:37 黑马网仔 阅读(285) 评论(0) 推荐(0) 编辑