Consider this code:
class Test { Test() { System.out.println(\"In constructor of Superclass\"); } int adds(int n1, int n2) { ret
That´s how Java works. If you create a child object, the super constructor is (implicitly) called.