How can I use CRTP in C++ to avoid the overhead of virtual member functions?
|
|
There are two ways. The first one is by specifying the interface statically for the structure of types:
The second one is by avoiding the use of the reference-to-base or pointer-to-base idiom and do the wiring at compile-time. Using the above definition, you can have template functions that look like these:
So combining the structure/interface definition and the compile-time type deduction in your functions allows you to do static dispatch instead of dynamic dispatch. This is the essence of static polymorphism. |
|||||||||||||||||
|
|
I've been looking for decent discussions of CRTP myself. Todd Veldhuizen's Techniques for Scientific C++ is a great resource for this (1.3) and many other advanced techniques like expression templates. Also, I found that you could read most of Coplien's original C++ Gems article at Google books. Maybe that's still the case. |
|||||||
|
|
I had to look up CRTP. Having done that, however, I found some stuff about Static Polymorphism. I suspect that this is the answer to your question. It turns out that ATL uses this pattern quite extensively. |
|||
|
|
|
This Wikipedia answer has all you need. Namely:
Although I don't know how much this actually buys you. The overhead of a virtual function call is (compiler dependent, of course):
While the overhead of CRTP static polymorphism is:
|
|||||||||||||||||||
|
|
By means of curiously recurring template pattern you can implement the static polymorphism. You can find an example on wikipedia. |
|||||
|
