Ask Your Question
4

If an inherited class has a different method signature than the base class, would it be appropriate to make the base class abstract?

asked 2022-01-06 11:00:00 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-07-17 12:00:00 +0000

bukephalos gravatar image

Yes, it would be appropriate to make the base class abstract if the inherited class has a different method signature than the base class. An abstract class is a class that cannot be instantiated directly and is meant to be extended by other classes. It provides a template or a blueprint for the inherited classes to follow. Making the base class abstract ensures that it cannot be instantiated directly and that any class that extends it must provide their own implementation for the abstract method(s). This allows for greater flexibility and customization in the inherited classes.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-06 11:00:00 +0000

Seen: 10 times

Last updated: Jul 17 '22