amazzzzzing

导航

2023年7月11日 #

虚函数

摘要: # 虚函数 ## 虚函数表 ### 示例 ```c++ // code of virtual function // filename: test.cpp #include class A { public: virtual ~A() {} void draw(){draw_imp();} prot 阅读全文

posted @ 2023-07-11 16:26 amazzzzzing 阅读(78) 评论(0) 推荐(0)