If you have several classes where you want them to inherit from a base class for common functionality, should you implement the base class using a class or an abstract class?
|
5
|
|
|
|
|
|
That depends, if you never want to be able to instantiate the base class then make it abstract. Otherwise leave it as a normal class. |
||
|
|
|
I suggest:
the reason i prefer real classes instead of abstract classes is that abstract classes cannot be instantiated, which limits future options unnecessarily. For example, later on i may need the state and methods provided by the base class but cannot inherit and do not need to implement the interface; if the base class is abstract i am out of luck, but if the base class is a regular class then i can create an instance of the base class and hold it as a component of my other class, and delegate to the instance to reuse the state/methods provided. yes this does not happen often, but the point is: making the base class abstract prevents this kind of reuse/solution, when there is no reason to do so. now, if instantiating the base class would somehow be dangerous, then make it abstract - or preferably make it less dangerous, if possible ;-) |
||
|
|
|
|
Think of this a different way
If the answer is no, then make it abstract. If it's yes then you likely want to make it a concrete class. |
||
|
|
|
|
Abstract classes are for partially implemented classes. By itself doesn't make sense to have an instance of an abstract class, it needs to be derived. If you would like to be able to create the base class it cannot be abstract. I like to think of abstract classes as interfaces which have some members pre-defined since they are common to all sub-classes. |
||
|
|
|
|
Abstract classes are great for predefined functionality for example when know the minimum exact behaviour a class should expose but not what data it should use to do it or the exact implementation.
Normal (non abstract) classes can be great for tsimilar things but you have to know the implementation specifics to be able to write them.
Also, you could use interfaces (individually or on classes, whether abstract or not) to define the same sort of prototype definition.
Yet another option may be using generics
All these methods can be used to define a certain prototype for classes to work with. Ways to make sure that code A can talk to code B. And ofcourse you can mix and match all of the above to your liking. There is no definate right way but I like defining interfaces and abstract classes, then referring to the interfaces. That way eliminates some of the thought requirements for "plumbing" in higher level classes while keeping the maximum flexibility. (having interfaces takes away the requirement of using the abstract base class, but leaves it as an option). |
||
|
|
|
|
If the base class ought not to be instantiated then make it an abstract class - if the base class needs to be instantiated then don't make it abstract. In this example it makes sense to make the base class abstract as the base class does not have any concrete meaning:
However in this next example you can see how the base class does have concrete meaning:
It is all pretty subjective really - you ought to be able to make a pretty good judgment call based on the needs of your particular domain. |
||
|
|
|
|
It depends, does it make sense for the base class in question to exist on it's own without being derived from? If the answer is yes, then it should be a regular class, otherwise, it should be an abstract class. |
||
|
|
|
|
The depends on whether you want the base class to be implemented on its own or not. As an abstract class, you can't make objects from it. |
||
|
|
|
|
I would say if you are not planning on calling the base class by itself, the then you should define it as an abstract class. |
||
|
