摘要: #include<stdio.h> struct animal { char* name; void (*call)(struct animal *self); }; typedef struct animal cat, dog; void cat_call(struct animal *self) 阅读全文
posted @ 2021-12-15 21:08 yghr 阅读(107) 评论(0) 推荐(0)