Is it good practice to make sure that all abstract classes have names prefixed with "Abstract"?
|
|
You can but I tend not to do this since it is an implementation detail. I don't like adding implementation detail information in the names of types and identifiers as that kind of information may change in the future. In my opinion it is best to name things what they are, not how they happen to be implemented. |
||
|
|
|
That depends on your coding conventions. You might also call them FooBase, or just Foo if you don't already have an interface Foo. |
||
|
|
|
I think this naming convention is just used because it is hard to come up with another good name. If you already have an interface called "List", how would one name the "AbstractList" class? It's more about avoiding name clashes then telling implementation details. |
||
|
|
|
|
If you consider how it is in the .NET framework, no. Take for example the abstract Stream class. Nothing in the class name indicates that it is in fact abstract. |
||
|
|
|
|
I find it useful to name classes in this fashion. It sends a message that they are intended to be sub-classed; not instantiated; contain code common to subclasses, etc. It's not always necessary though. Most programmers would probably identify "Shape" as an abstract class and "Square", "Circle", etc. as concrete. But if it's not immediately clear, it's a useful hint. You should also be guided by local programming conventions and style guides. |
||
|
|
|
|
I think it partly depends on how you will be using the class. If it's only intended for internal use in forcing derived classes to conform to an interface, then adding Abstract before it might not be a bad idea. However, if you are providing a Foo factory that will provide Foo instances that are actually SpecializedFoo1 or SpecializedFoo2, then it seems awkward to return AbstractFoo instances. |
||
|
|
|
|
Kinda hard to explain but I only use it to avoid copy/pasting the same code in functional classes and not in something like domain objects.
You should ofcourse decide for yourself, as long as the same convention is followed throughout a project. |
||
|
|
|
|
The answers so far are very helpful and show a responsible spread of practice. I tend to agree that names should not indicate implementation ( As an example I currently have a hieararchy (don't ask about the rationale for the names but they are meaningful in the context and map onto XML element names). I'm using Java but I think most languages would be similar:
I am now tending towards:
rather than
or
I personally can remember that |
||
|
|
