If I have a class:
class A { public A() { } }
and another
class B extends A { public B() { } }
is t
Every superclass needs to be constructed and there is no other way then calling a constructor.