...

/

Curiously Recurring Template Pattern (CRTP)

Curiously Recurring Template Pattern (CRTP)

Learn about the curiously recurring template pattern commonly known as CRTP.

We'll cover the following...

Overview

In the previous lesson, we learned how to implement dynamic polymorphism. But as we have seen, we have used virtual for the function in our base class. Using the virtual method, we are ...