Answer Posted / bharat
People have already posted the answer in brief, however for
a newbie, this might not be enough... Hence posting this
thread...
If you are referring to constructors as in pure C++, then
there is no such concept as "virtual" constructors. A
constructor is responsible for creation of the particular
object, and hence cannot be "virtual".
It cannot be so, because a virtual function allows the
actual function call to be "deeper" in the hierarchy than
the type through which it is being called. for example, you
can have a base pointer through which a virtual call is made
to a derived object's function code (Derived class is
"deeper" than base class")
Since the constructor is responsible for creation of the
object itself, the function call being "deeper" than the
type being created does not make any sense. Hence a
constructor is always "local", and virtual constructor
concept does not exist.
However, in the domain of design patterns, there is such a
concept as Virtual Constructor or Factory Method. You can
find more information on this concept in "Thinking in C++
Volume 2" (A superb and Free ebook by Bruce Eckel) at the
location
http://www.planetpdf.com/developer/article.asp?ContentID=6634
Hope this is useful...
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
Which is most difficult programming language?
What is static function? Explain with an example
What is a dll entry point?
How is new() different from malloc()?
Explain about Garbage Collector?
What is an undefined reference/unresolved external symbol error and how do I fix it?
What is the difference between an external iterator and an internal iterator?
Explain rtti.
How can a called function determine the number of arguments that have been passed to it?
How does class accomplish data hiding in c++?
What are destructors?
What is the size of integer variable?
Why c++ is better than c language?
What is function overloading in C++?