constructor and Abstract class
Hi All,
Say I have an abstract class and subclass that extends this abstract class. As far as I understand the first statement in the subclass constructor has to be super. if the subclass constructor doesn't call a superclass constructor explicity then the default constructor of the superclass is invoked. But what if I don't define any default constructor in the abstract class and I have some other constructor?
Thank u
Eyal

