Sorry if this question was already asked tons of times, but just hoped to find the information quicker by asking the question myself. So, the question is: is it obligatory to have a default constructor in a superclass to have the possibility to inherit from it? Suppose every derived class constructor is calling one of superclass constructors explicitly, providing the right parameters - will such code work? I can provide a code snippet to clarify what I'm talking about, if there is a need. Thanks in advance.
|
No. If you don't have default constructor in the base class, you need to call the base class constructor with argument(s) explicitly from the derived class constructor's member-initialization list. Example,
Note the syntax of Also notice |
|||||||||||||
|
|
Provided that
it is not mandatory to write a default constructor. |
|||
|
|
|
No, with one possible exception. Normally, the base class constructor will be called by the derived class immediatly above it, using the arguments provided by that derived class (if any). If all of the immediate derived classes initialize the base class explicitly, then no default constructor is needed. The one possible exception is if you inherit virtually from the base class. In that case, it is not the immediate derived class which initializes the base class, but the most derived class. And depending on how your class hierarchy is organized, you may not want the most derived class to know about the base; it should be sufficient for the most derived class to only know about the classes it directly inherits from. (Of course, this is an ideal, and is not always the case.) Luckily, as it happens, almost every time this occurs, the base is an abstract class without data (and thus with a default constructor). But it's something to keep in mind. |
|||||
|
|
If every constructor of the children classes use an explicit constructor of the parent, there is no need for the parent to have a default constructor. If you have a class with no default constructor, everyone is forced to use an explicit constructor upon instantiation, right? It's the same concept, if all the children make sure the default constructor is never called, then there is no need to implement it. |
|||
|
|
|
No you do not need a default constructor. The following compiles and runs, with or without the private Default constructor.
|
|||
|
|