c來實現虛函數

#include <stdio.h> typedef struct { void (*draw)(void*); //虛函數 void (*rotate)(void*); }vtable; typedef struct { vtable *vptr; //虛表指針 }Shape; typedef struct { vtable *vptr; int x,y
相關文章
相關標籤/搜索