This content originally appeared on DEV Community 👩💻👨💻 and was authored by Maxi Contieri
Don't make two or more things at once.
TL;DR: Try to be as atomic as possible in your methods
Problems
Coupled Code
Harder to test
Harder to read
Solutions
- Break the method
Refactorings
Refactoring 002 - Extract Method
Maxi Contieri ・ Nov 25 '21 ・ 2 min read
Context
If you name a method with 'And' you are probably missing an extract-and-break method opportunity.
Sample Code
Wrong
calculatePrimeFactorsRemoveDuplicatesAndPrintThem()
// Three responsibilities
Right
calculatePrimeFactors();
removeDuplicates();
printNumbers();
// Three diferent methods
// We can test them and reuse them
Detection
[X] Semi-Automatic
Some linters can warn us about methods including the term 'and'.
Tags
- Coupling
Conclusion
When making methods, it is very important to play some rubber duck story and tell ourselves if we are making things right.
Relations
Code Smell 85 - And Functions
Maxi Contieri ・ Aug 21 '21 ・ 1 min read
Disclaimer
Code Smells are just my opinion.
Credits
Photo by Scott Sanker on Unsplash
Learning the art of programming, like most other disciplines, consists of first learning the rules and then learning when to break them.
Joshua Bloch
Software Engineering Great Quotes
Maxi Contieri ・ Dec 28 '20 ・ 13 min read
This article is part of the CodeSmell Series.
How to Find the Stinky parts of your Code
Maxi Contieri ・ May 21 '21 ・ 7 min read
This content originally appeared on DEV Community 👩💻👨💻 and was authored by Maxi Contieri
Maxi Contieri | Sciencx (2022-10-15T01:46:12+00:00) Code Smell 169 – Glued Methods. Retrieved from https://www.scien.cx/2022/10/15/code-smell-169-glued-methods/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.