how c++ implements the polymorphism internally?

后端 未结 4 1368
耶瑟儿~
耶瑟儿~ 2020-12-31 20:02

Respected Sir!

i should tell you that what i know and what i don\'t know about the asked question so that you can address the weak area of my understanding.

4条回答
  •  Happy的楠姐
    2020-12-31 20:29

    C++ language doesn't define polymorphism implementations, not even the vtable. That's up to the compilers.
    One possible implementation is the one mentioned by Vincent Robert.

提交回复
热议问题