I have an abstract class. I want to extend the abstract class by another abstract class and then implement the extended abstract class. Is it possible .If yes, whether it\'s a g
Yes!
But it makes sense only if the abstract subclass adds more functionality (abstract or not).
Otherwise, I don't see the point.