I have heard that member function templates can't be virtual. Is this true?
If they can be virtual, what is an example of a scenario in which one would use such a function?
|
I have heard that member function templates can't be virtual. Is this true? If they can be virtual, what is an example of a scenario in which one would use such a function? |
|||||||||||||
|
|
Think about it for a while: |
|||||||||||
|
|
Templates are all about the compiler generating code at compile-time. Virtual functions are all about the run-time system figuring out which function to call at run-time. Once the run-time system figured out it would need to call a templatized virtual function, compilation is all done and the compiler cannot generate the appropriate instance anymore. Therefor, you cannot have virtual member function templates. However, there are a few powerful and interesting techniques stemming from combining polymorphism and templates, notably so-called type erasure. |
|||||||
|
|
C++ doesn't allow virtual template member functions right now. The most likely reason is the complexity of implementing it. Rajendra gives good reason why it can't be done right now but it could be possible with reasonable changes of the standard. Especially working out how many instantiations of a templated function actually exist and building up the vtable seems difficult if you consider the place of the virtual function call. Standards people just have a lot of other things to do right now and C++1x is a lot of work for the compiler writers as well. When would you need a templated member function? I once came across such a situation where I tried to refactor a hierarchy with a pure virtual base class. It was a poor style for implementing different strategies. I wanted to change the argument of one of the virtual functions to a numeric type and instead of overloading the member function and override every overload in all sub-classes I tried to use virtual template functions (and had to find out they don't exist.) |
|||||||||||||
|
Virtual Function TablesLet's begin with some background on virtual function tables and how they work (source):
My problem, or how I came hereI'm attempting to use something like this now for a cubefile base class with templated optimized load functions which will be implemented differently for different types of cubes (some stored by pixel, some by image, etc). Some code:
What I'd like it to be, but it won't compile due to a virtual templated combo:
Solutionwarning, this isn't very pretty but it allowed me to remove repetitive execution code 1) in the base class
2) and in the children classes
Note that LoadAnyCube is not declared in the base class. Here's another stack overflow answer with a work around: need a virtual template member workaround. |
|||||
|
|
The following code can be compiled and runs properly, using MinGW G++ 3.4.5 on Window 7:
and the output is:
And later I added a new class X:
When I tried to use class X in main() like this:
g++ report the following error:
So it is obvious that:
|
|||||||||
|
|
No template member functions cannot be virtual. |
|||||||
|
|
To answer the second part of the question:
This is not an unreasonable thing to want to do. For instance, Java (where every method is virtual) has no problems with generic methods. One example in C++ of wanting a virtual function template is a member function that accepts a generic iterator. Or a member function that accepts a generic function object. The solution to this problem is to use type erasure with boost::any_range and boost::function, which will allow you to accept a generic iterator or functor without the need to make your function a template. |
|||
|
|