Is it possible to inherit an ABSTRACT class at multilevel ??? Plz help, I tried but, compiler gives an error that child class is not abstract . . so on . . .
Printable View
Is it possible to inherit an ABSTRACT class at multilevel ??? Plz help, I tried but, compiler gives an error that child class is not abstract . . so on . . .
What do you mean multi-level? A class can of course extend an Abstract class, as long as it is either a) abstract itself or b) implements the abstract methods defined in the parent abstract class (this includes any implemented interfaces not implemented in the abstract class).