Can one abstract class extend another abstract class and increase functionality

58,273

Solution 1

I'm not sure about Java in particular, but it should be valid.

In terms of OOP, if it makes sense, then run with it. To use some old examples, you might have a Vehicle abstract class and then LandVehicle and FlyingVehicle abstract classes. As long as your example makes sense as an abstract class, then you should be fine.

Solution 2

Yes, it is possible, and I don't see a reason not to use it if you need it (disclaimer: but however there are many ways to misuse this, and to over-complicate things, as with everything in programming usually).

One thing to notice is that the second abstract class doesn't need to implement abstract methods from first class, but the first concrete must implement both.

Solution 3

Yes, you can! One abstract class can be extended by another abstract class

Solution 4

Yes!

But it makes sense only if the abstract subclass adds more functionality (abstract or not).

Otherwise, I don't see the point.

Share:
58,273
Saurabh Kumar
Author by

Saurabh Kumar

Updated on November 27, 2020

Comments

  • Saurabh Kumar
    Saurabh Kumar over 3 years

    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 good approach in point of view regarding OOPS?