Can an abstract class have a constructor?
If so, how it can be used and for what purposes?
|
Can an abstract class have a constructor? If so, how it can be used and for what purposes? |
||||
|
|
|
Consider this:
The superclass Product is abstract and has a constructor. The concrete class TimesTwo has a default constructor that just hardcodes the value 2. The concrete class TimesWhat has a constructor that allows the caller to specify the value. NOTE: As there is no default (or no-arg) constructor in the parent abstract class the constructor used in subclasses must be specified. Abstract constructors will frequently be used to enforce class constraints or invariants such as the minimum fields required to setup the class. |
|||||||||
|
|
You would define a constructor in an abstract class if you are in one of these situations:
Note that:
In any case, don't forget that if you don't define a constructor, then the compiler will automatically generate one for you (this one is public, has no argument, and does nothing). |
|||
|
|
|
Yes it can have a constructor and it is defined and behaves just like any other class's constructor. Except that abstract classes can't be directly instantiated, only extended, so the use is therefore always from a subclass's constructor. |
|||
|
|
|
Consider this:
The superclass is abstract and has a constructor. |
|||||||
|
|
But you cannot create any object of class Product ... Which is the meaning of having a constructor for an abstract class? Just to initialize/constraint the final values of the abstract class? Then you could overwrite it and forget the super initialization, i.e.:
or something even dangerous. The worst thing is that you can do that ... |
|||
|
|
Yes! Abstract classes can have constructors! Yes when we define a class to be an Abstract Class it cannot be instantiated but that does not mean an Abstract class cannot have a constructor. Each abstract class must have a concrete subclass which will implement the abstract methods of that abstract class. When we create an object of any subclass all the constructors in the corresponding inheritance tree are invoked in top to bottom approach. Same case applies to abstract classes. Though we cannot create an object of abstract class, when we create an object of a class which is concrete and subclass of the abstract class, constructor of the abstract class is automatically invoked.Hence we can have a constructor in abstract classes. Note : A non-abstract class cannot have an abstract methods but an abstract class can have a non-abstract method. Reason is similar to that of constructors, difference being instead of getting invoked automatically we can call super(). Also there is nothing like abstract constructor as it makes no sense at all. |
|||
|
|