[CleanCode] Meaningful Names [Part 2]

In this series of posts , I would try to share with you some of my highlights on Clean Code Chapters.

In this post my focus would be on Chapter 2. This is the second post discussing Chapter 2 so if you didn't read the first one , please go and check it before continuing.

6- Avoid useless prefixes

With the rise of the new generation of powerful compilers and IDEs , a lot of things become easier. We nearly don't have any limitations on the name length and we can easily get the data type of any variable mentioned in code easily.

  • You now don't have to encode your names to make them shorter so please don't.
  • You don’t need to prefix member variables with m_ anymore. You should be using an editing environment that highlights or colorizes members to make them distinct.
public class Part {
private String m_dsc; // The textual description
void setName(String name) {
m_dsc = name;
}
}
public class Part {
String description;
void setDescription(String description) {
this.description = description;
}
}

7- Avoid Mental Mapping

  • Readers shouldn’t have to mentally translate your names into other names they already know. This problem generally arises from a choice to use neither problem domain terms nor solution domain terms.

  • Make your names representative for the actual concept without the asking your reader to mentally map between variable c and the product cost without taxes for example ! We all now that programmers are smart but we need you to be professional too.

One difference between a smart programmer and a professional programmer is that the professional understands that clarity is king. Professionals use their powers for good
and write code that others can understand.

8- Class Naming

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.

9- Method Naming

Methods should have verb or verb phrase names like postPayment, deletePage, or save.

Accessors, mutators, and predicates should be named for their value and prefixed with get, set, and is according to the javabean

If you are writing in C# , you should depend on the language built in accessors.

string name = employee.getName();
customer.setName("mike");
if (paycheck.isPosted())...
  • When constructors are overloaded, use static factory methods with names that
    describe the arguments. For example,
Complex fulcrumPoint = Complex.FromRealNumber(23.0);

is generally better than

Complex fulcrumPoint = new Complex(23.0);

10- Don't be cute

  • Don't use funny names or any sort of slang while naming your items.
  • Don't use culture dependent jokes.

Again , focus on the clarity. Say what you mean , Mean what you say.

11- Pick one word per Concept

  • Pick one word for one abstract concept and stick with it. For instance, it’s confusing to have fetch, retrieve, and get as equivalent methods of different classes.

  • Function Names have to be consistent in order for you to pick the correct method without any additional exploration.

Example: What is the essential difference between a DeviceManager and a Protocol-Controller? Why are both not controllers or both not managers? The name leads you to expect two objects that have very different type as well as
having different classes.

A consistent lexicon is a great boon to the programmers who must use your code.

At the same time , you shouldn't do the reverse of this which is to use the same word for different ideas.

For example , One might decide to use the word add for “consistency” when he or she is not in fact adding in the same sense.
Let’s say we have many classes where add will create a new value by adding or concatenating two existing values. Now let’s say we are writing a new class that has a method that puts its single parameter into a collection. Should we call this method add? It might seem consistent because we have so many other add methods, but in this case, the semantics are different, so we should use a name like insert or append instead. To call the new method add would be a pun.

12- Use Solution Domain Names

People who read your code will be programmers. So go ahead and use
computer science (CS) terms, algorithm names, pattern names, math terms, and so forth.

What programmer would not know what a JobQueue was? There are
lots of very technical things that programmers have to do. Choosing technical names for those things is usually the most appropriate course.

13- Use Problem Domain Names

When there isn't an equivalent programming word/concept for what you’re doing, use the name from the problem domain. At least the programmer who maintains your code can ask a domain expert what it means.

Separating solution and problem domain concepts is part of the job of a good programmer and designer. The code that has more to do with problem domain concepts should have names drawn from the problem domain.

14- Add Meaningful Context

  • You need to place names in context for your reader by enclosing them in well-named classes, functions, or namespaces. When all else fails, then prefixing the name may be necessary as a last resort.

Imagine that you have variables named firstName, lastName, street, houseNumber, city, state, and zipcode. Taken together it’s pretty clear that they form an address. But what if you just saw the state variable being used alone in a method? Would you automatically infer that it was part of an address?

You can add context by using prefixes: addrFirstName, addrLastName, addrState, and so on but having an Address class is more better

Final Words :

Our goal, as authors, is to make our code as easy as possible to understand. We want our code to be a quick skim, not an intense study. We want to use the popular paperback model whereby the author is responsible for making himself clear and not the academic model where it is the scholar’s job to dig the meaning out of the paper.

The hardest thing about choosing good names is that it requires good descriptive skills and a shared cultural background. This can come by practicing and continuous refactoring

If you are maintaining someone else’s code, use refactoring tools to help resolve these problems. It will pay off in the short term and continue to pay in the long run.

Subscribe to Learn With Passion

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe