Why do we not have a virtual constructor?
|
|
|
|
|
|
|
Semantic reasons aside, there is no vtable until after the object is constructed, thus making a virtual designation useless. |
||
|
|
|
|
two reasons I can think of: Technical reason The object exists only after the constructor ends.In order for the constructor to be dispatched using the virtual table , there has to be an existing object with a pointer to the virtual table , but how can a pointer to the virtual table exist if the object still doesn't exist? :) Logic reason You use the virtual keyword when you want to declare a somewhat polymorphic behaviour. But there is nothing polymorphic with constructors , constructors job in C++ is to simply put an object data on the memory . Since virtual tables (and polymorphism in general) are all about polymorphic behaviour rather on polymorphic data , There is no sense with declaring a virtual constructor. |
||
|
|
|
|
Unlike object oriented languages such as Smalltalk or Python, where the constructor is a virtual method of the object representing the class (which means you don't need the GoF abstract factory pattern, as you can pass the object representing the class around instead of making your own), C++ is a class based language, and does not have objects representing any of the language's constructs. The class does not exist as an object at runtime, so you can't call a virtual method on it. This fits with the 'you don't pay for what you don't use' philosophy, though every large C++ project I've seen has ended up implementing some form of abstract factory or reflection. |
||||||||||
|
|
|
Only way it makes sense to me is if it is a pure virtual constructor - as in saying there is nothing to do here on say a class used as an interface. The thing is, you don't have to worry about it, the compiler will work that out. |
||
|
|
|
|
When people ask a question like this, I like to think to myself "what would happen if this were actually possible?" I don't really know what this would mean, but I guess it would have something to do with being able to override the constructor implementation based on the dynamic type of the object being created. I see a number of potential problems with this. For one thing, the derived class will not be fully constructed at the time the virtual constructor is called, so there are potential issues with the implementation. Secondly, what would happen in the case of multiple inheritance? Your virtual constructor would be called multiple times presumably, you would then need to have some way of know which one was being called. Thirdly, generally speaking at the time of construction, the object does not have the virtual table fully constructed, this means it would require a large change to the language specification to allow for the fact that the dynamic type of the object would be known at construction time. This would then allow the base class constructor to maybe call other virtual functions at construction time, with a not fully constructed dynamic class type. Finally, as someone else has pointed out you can implement a kind of virtual constructor using static "create" or "init" type functions that basically do the same thing as a virtual constructor would do. |
||
|
|
|
|
Hear it from the horse's mouth:). From Bjarne Stroustrup's C++ Style and Technique FAQ Why don't we have virtual constructors? |
||
|
|
|
|
Virtual functions basically provide polymorphic behavior. That is, when you work with an object whose dynamic type is different than the static (compile time) type with which it is referred to, it provides behavior that is appropriate for the actual type of object instead of the static type of the object. Now try to apply that sort of behavior to a constructor. When you construct an object the static type is always the same as the actual object type since:
(Bjarne Stroustup (P424 The C++ Programming Language SE)) |
||
|
|
|
|
We do, it's just not a constructor :-)
|
||
|
|
|
|
You shouldn't call virtual function within your constructor either. See : http://www.artima.com/cppsource/nevercall.html In addition I'm not sure that you really need a virtual constructor. You can achieve polymorphic construction without it: you can write a function that will construct your object according to the needed parameters. |
||
|
|
