Can one abstract class extend another abstract class and increase functionality

前端 未结 5 824
灰色年华
灰色年华 2021-02-01 03:15

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

5条回答
  •  臣服心动
    2021-02-01 03:35

    Yes!

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

    Otherwise, I don't see the point.

提交回复
热议问题