How to inherit the constructor from a super class to a sub class?
|
|
Constructors are not inherited, you must create a new, identically prototyped constructor in the subclass that maps to its matching constructor in the superclass. Here is an example of how this works:
|
|||||||||
|
|
Superclass constructor CAN'T be inherited in extended class. Although it can be invoked in extended class constructor's with super() as the first statement. |
|||
|
|
Read about the super keyword (Scroll down the Subclass Constructors). If I understand your question, you probably want to call a superclass constructor? It is worth noting that the Java compiler will automatically put in a no-arg constructor call to the superclass if you do not explicitly invoke a superclass constructor. |
|||
|
|
|
Default constructors -- public constructors with out arguments (either declared or implied) -- are inherited by default. You can try the following code for an example of this:
If you want to explicitly call a constructor from a super class, you need to do something like this:
The only caveat is that the super() call must come as the first line of your constructor, else the compiler will get mad at you. |
|||
|
|
Say if you have
then a sub-class named KKSUDPSocket extending KKSSocket could have:
and
You simply pass the arguments up the constructor chain, like method calls to super classes, but using super(...) which references the super-class constructor and passes in the given args. |
|||
|
|
