Comments are a code smell. Obsolete comments are a real danger and nobody maintains what can't be executed.
TL;DR: Don't trust comments. They are dead.
-
Bad documentation
-
Maintainability
- Replace comments with tests
Refactoring 005 - Replace Comment with Function Name
We know comments add almost no value to our code.
We need to restrict comments only to very important decisions.
Since most people change logic and forget to update comments they might become obsolete easily.
void Widget::displayPlugin(Unit* unit){
// TODO the Plugin will be modified soon,
// so I don't implement this right now
if (!isVisible) {
// hide all widgets
return;
}
}
void Widget::displayPlugin(Unit* unit)
{
if (!isVisible) {
return;
}
}
[X] Semi-Automatic
We can warn for comments in our code and try to remove them.
- Very important design decisions
- Comments
We need to think before adding a comment. Once It is in the codebase is beyond our control and can start to lie anytime.
Code Smell 05 - Comment Abusers
Code Smell 152 - Logical Comment
Code Smell 151 - Commented Code
Code Smells are just my opinion.
Photo by Volodymyr Hryshchenko on Unsplash
Obsolete comments tend to migrate away from the code they once described. They become floating islands of irrelevance and misdirection in the code.
Bob Martin
Software Engineering Great Quotes
This article is part of the CodeSmell Series.