Naming Conventions for Abstract Classes - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T23:44:41Zhttp://stackoverflow.com/feeds/question/429470http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/429470/naming-conventions-for-abstract-classes10Naming Conventions for Abstract ClassesMike Hofer2009-01-09T19:56:12Z2009-02-10T16:58:46Z
<p>I distinctly remember that, at one time, the guideline pushed by Microsoft was to add the "Base" suffix to an abstract class to obviate the fact that it was abstract. Hence, we have classes like <code>System.Web.Hosting.VirtualFileBase</code>, <code>System.Configuration.ConfigurationValidatorBase</code>, <code>System.Windows.Forms.ButtonBase</code>, and, of course, <code>System.Collections.CollectionBase</code>.</p>
<p>But I've noticed that, of late, a lot of abstract classes in the Framework don't seem to be following this convention. For example, the following classes are all abstract but don't follow this convention:</p>
<ul>
<li><p><code>System.DirectoryServices.ActiveDirectory.DirectoryServer</code></p></li>
<li><p><code>System.Configuration.ConfigurationElement</code></p></li>
<li><p><code>System.Drawing.Brush</code></p></li>
<li><p><code>System.Windows.Forms.CommonDialog</code></p></li>
</ul>
<p>And that's just what I could drum up in a few seconds. So I went looking up what the official documentation had to say, to make sure I wasn't crazy. I found the <a href="http://msdn.microsoft.com/en-us/library/ms229040.aspx" rel="nofollow">Names of Classes, Structs, and Interfaces</a> on MSDN at <a href="http://msdn.microsoft.com/en-us/library/ms229042.aspx" rel="nofollow">Design Guidelines for Developing Class Libraries</a>. Oddly, I can find no mention of the guideline to add "Base" to the end of an abstract class's name. And the guidelines are no longer available for version 1.1 of the Framework.</p>
<p>So, am I losing it? Did this guideline ever exist? Has it just been abandoned without a word? Have I been creating long class names all by myself for the last two years for nothing? </p>
<p>Someone throw me a bone here.</p>
<p><strong>Update</strong>
I'm not crazy. The guideline existed. <a href="http://blogs.msdn.com/kcwalina/archive/2005/12/16/BaseSuffix.aspx" rel="nofollow">Krzysztof Cwalina gripes about it in 2005.</a></p>
http://stackoverflow.com/questions/429470/naming-conventions-for-abstract-classes/429485#4294853Answer by Mehrdad Afshari for Naming Conventions for Abstract ClassesMehrdad Afshari2009-01-09T20:00:36Z2009-01-09T20:00:36Z<p>I don't remember such a guideline. I believe you should use the naming that makes sense. Sometimes the abstract class is only designed to provide common functionality to some classes (as a tool), which I think should have the suffix. However, in some cases, you want to use it as the base of a polymorphism hierarchy which it's not complete itself. In those cases I suggest naming like a normal class.</p>
<p>As you see, you won't probably declare a method that accepts a ButtonBase as parameter. It's designed to provide minimal functionality for subclasses. However, you might treat a <code>ConfigurationElement</code> as an entity that has different forms but it is not complete on itself (and hence it's abstract)</p>
http://stackoverflow.com/questions/429470/naming-conventions-for-abstract-classes/429494#4294946Answer by IainMH for Naming Conventions for Abstract ClassesIainMH2009-01-09T20:02:41Z2009-02-10T16:58:46Z<p>In <a href="http://rads.stackoverflow.com/amzn/click/0321246756" rel="nofollow">Framework Design Guidelines</a> p 174 states:</p>
<p><strong>Avoid</strong> naming base classes with a "Base" suffix if the class is intended for use in public APIs.</p>
<p>Also : <a href="http://blogs.msdn.com/kcwalina/archive/2005/12/16/BaseSuffix.aspx" rel="nofollow">http://blogs.msdn.com/kcwalina/archive/2005/12/16/BaseSuffix.aspx</a></p>
http://stackoverflow.com/questions/429470/naming-conventions-for-abstract-classes/429521#4295214Answer by Joel Coehoorn for Naming Conventions for Abstract ClassesJoel Coehoorn2009-01-09T20:09:16Z2009-01-09T20:09:16Z<p>Also, if the abstract class has a few static members that will be used the 'Base' can get ugly.</p>