04 2019 档案

摘要:typedef struct Object { int a; int ID; int b; }Object; Object newObject() { Object obj; printf("newObject()...\n"); obj.a = 1024; obj.ID = -1; obj.b = 2; return ob... 阅读全文
posted @ 2019-04-16 16:53 NULL_ROOT 阅读(140) 评论(0) 推荐(0)