vote up 5 vote down star

Which nouns do you find yourself putting regularly at the end of your classes?

For example, I have a habit of sticking Info onto classes that pass information around but don't do a great deal:

  • ImportInfo
  • SiteInfo

Or for Coordinating classes:

  • UserManager
  • SecurityManager

I end up using Builder quite often for string related classes, even if it barely does any building:

  • TemplateBuilder
  • HtmlBuilder

And of course the timeless Helper/Utility class:

  • PhraseHelper
  • NumberUtility
  • FileHelper

Have you got any good, by which I mean concise and descriptive, nouns or words you regularly use to denote the class' main role?

This question is aimed at the .NET world, but can extend to Java, C++, Python and so on.

flag

13 Answers

vote up 1 vote down

I am often using :

  • Protocol (Specific protocol implementation)
  • Manager (Class managing the process)
  • Emulator (Emulate something...)
link|flag
vote up 1 vote down

I find myself sometimes appending the name of the parent class the one I'm writing I want to inherit. Sometimes it sounds weird especially with an Animal example (DogAnimal, FishAnimal, ...) but it makes finding subtypes easier in a list of classes.

link|flag
3  
LabradorDogCanineCarnivoreMammalVertebrateAnimalEukaryote, that sort of thing? ;-) – Steve Jessop Jul 28 at 14:47
Although I joke, I actually don't think this is a bad idea, since in practice it's quite common to have 2-level hierarchies. WindowsThingy, LinuxThingy, MacOSThingy; LoopbackWotsit, NetworkWotsit, SerialWotsit; MysqlAdaptor, SqlserverAdaptor, SqliteAdaptor. – Steve Jessop Jul 28 at 16:29
haha, yeah, I usually stop at two. Most inheritance beyond that is from the API. – Chet Jul 28 at 16:50
vote up 1 vote down

On occasion I use

Target

As in

  • UploadTarget
  • ProcessingTarget

I don't think I had before Silverlight / WPF but I now also use

Converter

As in:

  • CurrentTimeDisplayConverter
  • TimeDeltaConverter
link|flag
vote up 2 vote down

I append pattern name at the end if i follow one (i.e. FooRepository).
Trying to avoid -Helper, -Manager, -Utils.

link|flag
2  
+1: those 'Helper' and 'Manager' names usually imply that you're wrapping up a procedural system and pretending it's object-oriented. There's nothing wrong with the procedural approach but if you want the benefits of object orientation then the objects should perform their own behaviour for the most part. – Kylotan Jul 28 at 14:40
+1 for saying you shuold avoid Helper, Manager, etc. – rmeador Jul 28 at 15:13
1  
What's procedural about the word Manager? Helper I can understand, and Util and Tools, but Manager seems like it lends itself to being an object. – Chris S Jul 28 at 20:13
vote up 2 vote down

Base, Reader, Writer, Manager, File.. some others.

link|flag
Yes, Base I use quite often. – RichardOD Jul 29 at 7:59
vote up 1 vote down

Tests for unit test classes

link|flag
vote up 0 vote down

Controller and View.

link|flag
vote up 1 vote down
  • Factory
  • Helper
  • Utils
  • Job
  • Entity
link|flag
vote up 1 vote down
Factory

Also:

Provider
link|flag
vote up 0 vote down

why of course...

Base

works both sides.

;-)

link|flag
vote up 0 vote down

If my class is specifically doing calculations, I will prepend Calc

Examples:

  • TaxCalc
  • TipCalc
  • DateCalc
link|flag
vote up 5 vote down

I use Provider and Helper a lot.

link|flag
vote up 2 vote down

Util

  • EnumUtil
  • ParseUtil
  • StringUtil
  • etc ...
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.