How many abstract classes can be derived into a single class?
Answers
Answered by
0
More than 1 abstract class can be derived, but not in Java. Yes, it is possible to abstract more than one abstract class into a single class but with the aid of Interfaces.
Interfaces are used for implementing multiple Inheritance in java.
So, without the use of an Interface only one abstract class can be derived, and using an Interface more than one is possible.
Similar questions