虛函數表

虛表只存的地址 class Base { public: virtual void func1() {} virtual void func2() {} private: int a; }; void Test1() { Base b1;//虛函數表指針_vfptr,虛函數的重寫,完成多態,指向虛函數的一張表,其實是個數組,指針數組,存的虛函數的地址 cout << sizeof(b1) << e
相關文章
相關標籤/搜索