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. |
||
|
|
|
|
Consider this:
The superclass is abstract and has a constructor. |
|||
|
|
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. |
||
|
|
|
|
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). |
||
|
|
