#include "malloc.h"
#include <stdio.h>
struct Base {
struct VFunc* vF;
};
struct VFunc {
void (*print)(Base* b);
};
void print(Base* b) {
printf("%s\n", "我是Base!");
}
struct Derived {
struct VFunc* vF;
int a;
};
void print_Derived(Base* b) {
Derived* curr = (Derived*)b;
printf("%s%d\n", "我是Derived!a是", curr->a);
}
Base* ctor_Derived(int in) {
Derived* b = (Derived*)malloc(sizeof(struct Derived));
VFunc v{ &print_Derived };
b->vF = &v;
b->a = in;
return (Base*)b;
}
Base* ctor() {
Base* a = (Base*)malloc(sizeof(struct Base));
VFunc v{ &print};
a->vF = &v;
return a;
}
int main() {
Base* b = ctor_Derived(1);
if (!b) return -1;
b->vF->print(b);
Base* a = ctor();
a->vF->print(a);
return 0;
}
struct VFunc
,里面都是函数指针struct Base
需要虚表指针,并且声明定义虚函数struct Derived
需要虚表指针,相当于继承,并且声明定义虚函数Base->Derived1
和Base->Derived2
就有两个虚表强制转换
,Derived的顺序不能改struct Base {
struct VFunc* vF;
};
struct Derived {
struct VFunc* vF;
int a;
};
原文:https://www.cnblogs.com/wasi-991017/p/15170905.html