vote up 13 vote down star
9

In your experience, what are some "smelly" keywords in class or function names that might be warning signs of bad object-oriented design?

I've found that classes containing the word Manager or Base are often suspect. For example, a FooManger often indicates poor encapsulation or a singleton design that is difficult to reuse.

A FooBase class is typically an abstract base class that is never expected to be directly referenced in caller code. It's only used to share some code implementation without a true IS-A relationship. And the Base class name exposes internal implementation details and does not reflect a "real world" object in a Domain Model.

Functions that include the word And or Or (e.g. DoThisAndThat() or DoThisOrThat()) are smelly. The function is probably lack cohesion and is trying to do too much. And the name exposes internal implementation details.

flag
For base classes, do you have issue with just the word Base in the name or the concept of abstract base classes in general? You say "never expected to be directly referenced in caller code" but it can be used by calling code much the same way an interface is used. – Davy8 Feb 18 at 22:34
-1. I agree with you on function naming, but what if I have a user control that just coordinates the interaction between some related child controls? Is that not a candidate for a class name including "manager"? And I know right away what a class is for if it's name ends with "Base". – Ed Swangren Feb 18 at 23:22
To be fair, he did say that classes containing Manager or Base are OFTEN suspect, not always. I have also found this to be true over the years. – markh44 Apr 7 at 7:52
Came here to post about function names with and and or in the name...glad everyone else agrees these are signs of bad code :) – Adam Neal Aug 19 at 20:08

21 Answers

vote up 10 vote down check

I've found this to be helpful:

"Classes and objects should have noun or noun phrase names like Customer, WikiPage, Account, and AddressParser. Avoid words like Manager, Processor, Data, or Info in the name of a class. A class name should not be a verb."

(From Clean Code by Robert Martin, p25)

link|flag
I (IMHO) disagree with the discouragement of the Manager suffix. It's a noun, which satisfies the first part of the quote. Take @HardCode's example of ConfigurationManager. I can't think of a suitable replacement that doesn't sound contrived and awkward. (I agree re: Data, Info, et al.) – JMD Feb 18 at 22:35
Names matter. The name of your class should not only tell you what the class does, but also what it doesn't do. Using the word Manager puts no limits on what the class CAN do. It makes for hard to understand designs and usually leads to procedural coding styles that infect the rest of the system. – Dunk Feb 18 at 22:59
Sometimes it has taken a while to come up with a good name, but I can't recall anytime that I didn't come up with a better name and design once I got rid of the word Manager from the class name. – Dunk Feb 18 at 23:01
vote up 0 vote down

Naming all depends on the context in the application it is used in. There are no hard and fast rules.

If your comming into a project that's already up and running and they are using verbs for class names everywhere, why would you confuse programmers down the line and take a different naming approach?

Think about the big picture.

link|flag
vote up 2 vote down

Manager, Handler, Thing, Dingus, Doodad, Entity, Gizmo, Object, Helper, Widget, Gadget

-> http://journal.stuffwithstuff.com/2009/06/05/naming-things-in-code/

link|flag
vote up 0 vote down

If a class can't have a more specific name than FooManager, then it's possibly trying to do too many different things with Foo.

link|flag
vote up -2 vote down

http://stackoverflow.com/questions/560648/object-oriented-login-functionality/563392#563392

A Manager is in charge of many directly related entities. The manager is responsible for how those entities interact with a client. Some manager classes do not have well defined names such as array, stack, and queue.

link|flag
vote up 1 vote down

I've seen interfaces called InterfaceName**Impl**. What can be worse?

link|flag
vote up 3 vote down

" *Helper* ". If a class can't do its job, who can?

link|flag
Done it before, and will probably do it again, but man I've seen it used for evil – lagerdalek Feb 19 at 0:34
1  
The class might be final/sealed. Think StringHelper... – EricSchaefer Apr 6 at 19:04
vote up 0 vote down

Class names that aren't indicative of what they do. There's a lot of things just called 'Manager' or 'Interface' hidden inside libraries that I've worked on in the past. You're never supposed to call them directly as they're internal structures to manage its functions.

It's not clear what 'Interface' interfaces to; is it a programming interface, does it interface on the network or to hardware? To find out you have to go and read the code/docs for the Interface class.

Of course when I say 'interface' I mean any reasonably vague single word name.

link|flag
vote up 0 vote down

The words "Data", "Info", "Struct", "Record", etc. in a class name mean that somebody has Not Been Thinking. Ohhhhh, that's the class with the DATA in it! So all these other classes, they don't have any?...

(Yeah, I know, interfaces. But even then, naming the implementation of an interface "InterfaceData" would be pretty dim.)

link|flag
vote up 1 vote down

Singleton.

link|flag
If its a Baseclass or a decorator? If there's only one where's the problem? – Sven Hecht Jun 23 at 14:53
Singleton is an implementation detail cast as a design pattern. As an implementation detail it's a major impediment to scalability. – MSN Jun 23 at 19:45
vote up 0 vote down

I don't agree with "Manager", and apparently neither does Microsoft (not that they are always right!) Consider the ConfigurationManager class. It's a legitimate use of "Manager" because this class manages the app.config/web.config files. "ConfigurationReaderWriter" would be bizzare, and having two classes (ConfigurationReader and ConfigurationWriter) wouldn't make much sense.

link|flag
I 100% disagree with using the word Manager in a class name, unless you are modeling a real Manager (as in a person). What does a manager class do? Anything you want. ConfigurationManager is not an example of a valid use, it shows what goes wrong... – Dunk Feb 18 at 22:48
The ConfigurationManager class does much, much more than your snippet implies. Developers couldn't come up with a better place to put functionality so they just threw stuff in the manager class because it was remotely related. Whose to say that a manager can't do all these things. – Dunk Feb 18 at 22:52
django uses a 'Manager' class also. It's scope is very narrow, it assembles fragments of SQL into queries for a particular back-end. I'm not too fond of the name, because it's not obvious from the name that it does that. – TokenMacGuy Feb 19 at 0:38
System.Configuration.ConfigurationManager does not manage configurations. It is not even a real class that would be instantiated; it contains only static factory methods to open configuration files. Those methods could have been static methods of the Configuration class itself. No "Manager" needed. – cpeterso Feb 19 at 8:18
@Dunk: So, a Manager class representing a person, and not PersonManager ... which implies that Manager manages something. Why not for a non-person entity? This whole "Manager" semantic debate is silly. – HardCode Feb 19 at 16:09
show 2 more comments
vote up 1 vote down

Class names are largely arbitrary, so pick what works for you and the consumers of your code. But some kinds of class names can be indicative of a larger problem.

To illustrate a point:

ClassName
  LongClassName
    VeryLongClassName
      VeryLongClassNameThatIsIndicativeOfExcessiveUseOfInheritance
      VeryLongClassNameThatIsNotIndicativeOfExcessiveUseOfInheritance
    SomewhatLongClassName
  ShortClassName
    ShortNameOfVeryLargeClass
    ShortClassNameThatAlsoHasTheWordShortInTheName

Don't worry so much about the names. Worry about the design. Where I work, we routinely bandy about classes with names like F, P, V, and $, and it's not a problem for anyone.

link|flag
vote up 0 vote down

I think anything that starts with class foo is likely to be unreadable.

Yes, I mean that literally. I tend to over-use "foo"...

link|flag
Ick. I never use placeholder names for anything except interactive testing. Ok, so they show up in some unit tests (especially python doctests), but not many. – TokenMacGuy Feb 19 at 0:35
vote up 1 vote down

DoThisAndThat() or DoThisOrThat() inherently violate the Single Responsibility Principal. A method should do one thing and one thing only (even if that one thing is calling a bunch of other methods)

link|flag
vote up 12 vote down

The most common 'smell' I've found is confusion of concepts of number. You don't want a class called Contacts if one instance refers to one "contact". You call it Contact instead.

link|flag
vote up 0 vote down

The word "Stuff" in any sort of class/function name is going to be a very bad sign (provided it's not the verb form). DoStuff(), ValidateStuff(), FetchStuffFromDatabase(), pick your poison.

link|flag
vote up 5 vote down

how about a "cls" prefix or a "Class" suffix? Those smell

link|flag
vote up 8 vote down

The worst function name I've come across in real life:

DoTheLogic();
link|flag
Better than DoSomeMagic... – superwiren Feb 23 at 21:34
Ever seen obfuscated c? – Martin K. Apr 7 at 7:30
1  
even worse: DoIt(); – Sven Hecht Jun 23 at 14:55
Run() ––––––––– – iik Aug 13 at 21:22
vote up 4 vote down

Util classes can be quite useful, but if the name if plain "Util" or "Utils" it's rather undescriptive.

link|flag
Utils or Tools classes are development Weed ;) – Sven Hecht Jun 23 at 14:54
vote up 12 vote down

To quote Roedy Green's How To Write Unmaintainable Code:

Be Abstract

In naming functions and variables, make heavy use of abstract words like it, everything, data, handle, stuff, do, routine, perform and the digits e.g. routineX48, PerformDataFunction, DoIt, HandleStuff and doargs_method.

link|flag
vote up 6 vote down

I don't agree with you on the Base point. For example, in ASP.NET (both WebForms and MVC) it is not at all uncommon with base classes for a lot of different things - the most common use I've seen is for methods that you want to run every time a page is loaded, or every time a specific group of pages are loaded. You then create a PageBase class that inherits from System.Web.UI.Page, containing the method you want to copy, and make all the pages you want to run this method inherit your PageBase instead of the default System.Web.UI.Page. This isn't necessarily poor design - it is one of many tools to try to follow the DRY principle ("Don't Repeat Yourself).

link|flag
I'd do <projectname>Page as the class name in that case; you're a specialization of Page, for the given project. "PageBase" would be the base class UNDER "Page." – mjfgates Feb 18 at 23:14

Your Answer

Get an OpenID
or

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