Super class constructor is always called during construction process and it’s guaranteed that super class construction is finished before subclass constructor is called. This is the case for most if not all the object oriented language.
Read moreCan we call a subclass constructor from the superclass constructor?
No, we cannot call subclass constructor from superclass constructor .
Read more