Actually, super() is the first statement of a constructor because to make sure its superclass is fully-formed before the subclass being constructed . Even if you don’t have super() in your first statement, the compiler will add it for you!12 Mar 2017
Read moreShould super be the first line in constructor?
Subclass Constructors Invocation of a superclass constructor must be the first line in the subclass constructor. super(); … Object does have such a constructor, so if Object is the only superclass, there is no problem.
Read more