Why can an abstract class have a constructor? As we can't create an object of it why would we need a constructor in an abstract class?
|
|
In some cases we need to initialize the fields in the abstract class. If it is a empty constructor this is done implicit by the constructor in the child class, otherwise we use All in all, this means that the constructor is used by the child class constructor and not from the "outside". |
||||
|
|
|
By adding a constructor to an abstract class you can force the child classes to make a call to super in order to initialize some fields. Example:
|
|||
|
|
|
You still need to be able to create a sub-class which must call its parent's constructor and its parents etc. The real question is why can you make an abstract classes constructor public. ;) |
|||
|
|
|
because an class that inherits your abstact class can call this constructor
|
||||
|
|
|
Subclasses can be instantiated and can call the abstract class's constructor from its constructor. Example:
|
|||
|
|
|
Think of an abstract class like a blueprint of a derived one up to 1 or 2 methods that must be implemented in derived classes. It makes sense to implement as much as possible/sensible in the abstract class, including the constructor. |
|||
|
|
|
The abstract constructor forces classes that inherit from the class to implement (or call) the constructor. This implies that you can be sure that any operations in the constructor of the abstract class will be executed. |
|||
|
|
|
Abstract class represents a more top level of objects, in some cases these top level objects need values to be set at the creation of the object by the business perspective. Missing to set this value could cause business object to fail. The constructors are supported in the abstract class to enforce setting a value when building the class (otherwise it could be forgotten). For example,
Here we cannot imagine a account without a holder, so it's essential to the business to set the holder when creating the object. Setting it in the base level ensures it will be forced to set when adding new types of sub classes. Hence it's to ensure 'Open for extensions but closed for modification' one of the SOLID principles. |
|||
|
|
|
Constructors in baseclasses can be used to do constructor chaining, so you can init your base class fields for example. In this constructor you can put some businesslogic to validate the parameters example contructor chainging:
|
|||
|
|