摘要: #include "malloc.h" #include <stdio.h> struct Base { struct VFunc* vF; }; struct VFunc { void (*print)(Base* b); }; void print(Base* b) { printf("%s\n 阅读全文
posted @ 2021-08-21 23:11 肥斯大只仔 阅读(124) 评论(0) 推荐(0) 编辑