0
votes
If classes with virtual functions are implemented with vtables, how is a class with no virtual functions implemented?
There's no need for function pointers as it cant change during the runtime.
…
1
vote
Performance penalty for working with interfaces in C++?
One thing that should be noted is that virtual function call cost can vary from one platform to another. On consoles they may be more noticeable, as usually vtable call means a cache miss and can s …
