Tech & Engineering
7
min of reading
March 4, 2021
This post contains automatic translation

Do you know what Bad Smell is? Part II

Thiago dos Santos Chagas
.Net Consultant
I develop and implement various tests for software application. I evaluate projects and ensure compliance with business requirements on the sensedia's API platform.
More about the author

We have returned with the second part of the weekly posts about Bed Smell on our blog. And if you haven't read the first part, just click here. Today, we are going to talk about the Obfuscators family.

But who are the Obfuscators?

Obfuscators is a type of bad smell that masks the behaviour or the purpose of the code, generating poor communication, because it obscures what must be done and the intention, causing confusion to the reader. In this post, we are going to talk about the Obfuscators Vertical Separation and Poor Names. But who are they? 

Vertical Separation 

"Variables and functions must be declared where they are used." 

This may sound silly, but it helps a lot in code organization and visibility. Remember that we create codes for people, not for machines, and the more readable it is, the faster will be the adaptation of another person who is going to maintain it, or even you when you get back to the code after some time. 

Let's see an example! 

In the image below, we have a class called VerticalSeparation. When analysing this class, we see that it contains four declared methods and one variable. In the RotateMethodOne method, at the beginning, we have a declaration of a variable, myValue, which will only be used in the last method call (RotateMethodThree). The class shows us that the organization of the methods is a little confusing, we have to scroll to check the contained methods. We have already turned on the alert to implement a refactor in this class.

Image for post

 Let's see what we can improve in the class above?

Image for post

 

Taking a look at the class after refactoring, we can see a better visual and physical organization of its content. Within the RotateMethodOne method, we keep the shared routine calls and the cascade calls separated. 

As we use the variable declared only in the call of the method RotarMethodThree, which is the last one, we declare it before the method call. This shows that the variable was declared in that piece of code demonstrating the intention to be used just below in the next call. The declaration of the implemented methods also follows the order in which they were called in the main flow.

Other tips for resolving Vertical Separation

  •  Private methods must be declared just below where they are used without scrolling.
  •  If you have a private method that is used by several other methods, declare it after the first place it is used.
  • The class should not be so long as to search for the routines. Break the class into smaller classes (Single Responsibility, Interface Segregation Principle).

Poor Names

Image for post

 

One of the most important things in a code is the methods, classes, or variables names. A name must be descriptive and express exactly what it represents in the rule we are working on. Poor Names are totally out of this pattern, that is, they are difficult to understand and without expression.

Let's take an example.

 

Image for post

In the class above PoorName, the declaration of properties and method is done completely wrong. Names without expression, use of prefixes, declarations with invalid standards. We have a method that by name we have no idea what it does. This class urgently needs a refactor.


Image for post

In the class after refactoring, we have the properties declared with the Conventions used in C#. And now with a more extensive name, the method and its internal declarations express exactly what it does.

 Other tips for solving Poor Names: 

  • Always check that the proposed name is descriptive. 
  • The name must be given according to the level of abstraction. 
  • Try to follow patterns.
  • Names must not be ambiguous. 
  • Use long names for long contexts. 
  • Do not use abbreviations.

I hope you enjoyed this content! Next post, we will talk about the Bad Smells of the Dispensables Family. 

May the force be with you!

References


subscribe to our newsletter with exclusive content.

Click and join the Sensedia News!

Click and join the Sensedia News!

Click and join the Sensedia News!

Thanks for reading!