CRTP is a technique of achieving static polymorphism. And this technique is also called F-bound polymorphism…
Tag: polymorphism
Calling member functions in base template class
When the base is template class, then compiler cannot simply call base class members in derived…
Diamond problem in inheritance – Overheads
Diamond problem in inheritance is a consequence of multiple inheritance which leads to duplication of data.…